console/SWSCloudCore/templates/default/tasks/index.html

44 lines
1.4 KiB
HTML
Raw Normal View History

2015-12-01 02:45:57 +03:00
{% extends "default/_layout.html" %}
{% block title %}Главная{% endblock %}
{% block content %}
<div class="row">
<div class="large-12 columns">
<h3>Задачи</h3>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<table width='100%'>
<thead>
<tr>
<th>Id</th>
<th>Дата</th>
<th>Задача</th>
</tr>
</thead>
<tbody>
{% if tasks.total == 0 %}
<tr>
<td colspan="5">Нет ни одной задачи.</td>
</tr>
{% else %}
{% for task in tasks['items'] %}
<tr>
<td>{{ task.id }}</td>
<td>{{ task.created }}</td>
<td>
{% if task.details.action == 'create' %}
{{ task.details.action }} container:{{ task.details.container_id }}
{% endif %}
</td>
</tr>
{% endfor %}
{% endif %}
</tbody>
</table>
</div>
</div>
{% endblock %}