capsul-flask/capsulflask/templates/capsuls.html

69 lines
2.0 KiB
HTML
Raw Permalink Normal View History

{% extends 'base.html' %}
2020-05-11 16:57:39 +00:00
{% block title %}Capsuls{% endblock %}
2020-05-11 16:57:39 +00:00
{% block custom_flash %}
{% if created %}
<div class="flash green">{{ created }} successfully created!</div>
{% endif %}
{% endblock %}
{% block content %}
2020-05-13 05:28:53 +00:00
<div class="row third-margin">
<h1>Capsuls</h1>
</div>
<div class="third-margin">
{% if has_vms %}
<div class="row third-margin justify-end">
<a href="/console/create">Create Capsul</a>
</div>
2020-05-13 05:28:53 +00:00
<div class="row">
<table>
<thead>
2020-05-11 16:57:39 +00:00
<tr>
<th class="heart-icon"></th>
2020-05-13 05:28:53 +00:00
<th>id</th>
<th>size</th>
<th>cpu</th>
<th>mem</th>
<th>ipv4</th>
<th>os</th>
<th>created</th>
2020-05-11 16:57:39 +00:00
</tr>
2020-05-13 05:28:53 +00:00
</thead>
<tbody>
{% for vm in vms %}
<tr>
{% if vm['state'] == 'starting' or vm['state'] == 'stopping' %}
<td class="capsul-status waiting-pulse"></td>
{% elif vm['state'] == 'crashed' or vm['state'] == 'blocked' or vm['state'] == 'stopped' %}
<td class="capsul-status red"></td>
{% elif vm['state'] == 'unknown' %}
<td class="capsul-status-questionmark">?</td>
{% else %}
<td class="capsul-status green"></td>
{% endif %}
2020-05-15 17:23:42 +00:00
<td><a class="no-shadow" href="/console/{{ vm['id'] }}">{{ vm["id"] }}</a></td>
2020-05-13 05:28:53 +00:00
<td>{{ vm["size"] }}</td>
<td class="metrics"><img src="/metrics/cpu/{{ vm['id'] }}/5m/s"/></td>
<td class="metrics"><img src="/metrics/memory/{{ vm['id'] }}/5m/s"/></td>
<td class="{{ vm['ipv4_status'] }}">{{ vm["ipv4"] }}</td>
<td>{{ vm["os"] }}</td>
<td>{{ vm["created"] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
2020-05-11 16:57:39 +00:00
{% else %}
2020-05-15 17:23:42 +00:00
<div class="row">
<p>You don't have any Capsuls running. <a href="/console/create">Create one</a> today!</p>
</div>
2020-05-11 16:57:39 +00:00
{% endif %}
</div>
2020-05-11 16:57:39 +00:00
{% endblock %}
{% block pagesource %}/templates/capsuls.html{% endblock %}