comparison frontend/mfrontend/templates/joblist.html @ 17:57a48d2aee18

Małe poprawki na liście zadań i mały dopisek do dokumentacji n.t. systemu szablonów
author Michał Rudowicz <michal.rudowicz@fl9.eu>
date Sun, 03 Apr 2011 14:07:19 +0200
parents 9a0a9fa7f91d
children 9916d46ff096
comparison
equal deleted inserted replaced
16:c87f82a15606 17:57a48d2aee18
5 <tr> 5 <tr>
6 <th>id</th> 6 <th>id</th>
7 <th>Właściciel</th> 7 <th>Właściciel</th>
8 <th>Hash</th> 8 <th>Hash</th>
9 <th>Opis</th> 9 <th>Opis</th>
10 <th>Metoda</th>
10 <th>Stan</th> 11 <th>Stan</th>
12 <th>Postęp</th>
11 <th>Wynik</th> 13 <th>Wynik</th>
12 </tr> 14 </tr>
13 {% for job in jobs %} 15 {% for job in jobs %}
14 <tr> 16 <tr>
15 <td>{{ job.id }}</td> 17 <td>{{ job.id }}</td>
16 <td>{{ job.username }}</td> 18 <td>{{ job.username }}</td>
17 <td>{{ job.hash }}</td> 19 <td>{{ job.hash }}</td>
18 <td>{{ job.label }}</td> 20 <td>{{ job.label }}</td>
21 <td>{{ job.method }}</td>
19 <td>{{ job.state_text }}</td> 22 <td>{{ job.state_text }}</td>
23 <td>{% if job.percent is not sameas None %}
24 {{ job.percent }}%
25 {% else %}
26 brak danych
27 {% endif %}
28 </td>
20 <td>{{ job.result }}</td> 29 <td>{{ job.result }}</td>
21 </tr> 30 </tr>
22 {% endfor %} 31 {% endfor %}
23 </table> 32 </table>
24 {% endblock %} 33 {% endblock %}