comparison frontend/mfrontend/templates/joblist.html @ 9:9a0a9fa7f91d

Dodałem prototyp listy zadań w systemie
author Michał Rudowicz <michal.rudowicz@fl9.eu>
date Mon, 28 Feb 2011 19:25:51 +0100
parents
children 57a48d2aee18
comparison
equal deleted inserted replaced
8:e00d04093c60 9:9a0a9fa7f91d
1 {% extends "layout.html" %}
2 {% block body %}
3 <h2>Lista zadań</h2>
4 <table border="1">
5 <tr>
6 <th>id</th>
7 <th>Właściciel</th>
8 <th>Hash</th>
9 <th>Opis</th>
10 <th>Stan</th>
11 <th>Wynik</th>
12 </tr>
13 {% for job in jobs %}
14 <tr>
15 <td>{{ job.id }}</td>
16 <td>{{ job.username }}</td>
17 <td>{{ job.hash }}</td>
18 <td>{{ job.label }}</td>
19 <td>{{ job.state_text }}</td>
20 <td>{{ job.result }}</td>
21 </tr>
22 {% endfor %}
23 </table>
24 {% endblock %}