Mercurial > kraina_muminkow
changeset 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 | c87f82a15606 |
children | 8dabb7e7f039 |
files | frontend/doc/quickstart.txt frontend/mfrontend/templates/joblist.html |
diffstat | 2 files changed, 15 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/frontend/doc/quickstart.txt Sun Apr 03 13:47:13 2011 +0200 +++ b/frontend/doc/quickstart.txt Sun Apr 03 14:07:19 2011 +0200 @@ -34,3 +34,9 @@ przeglądarce adresu ``/install/``. Po poprawnej instalacji w katalogu głównym zostanie stworzony pusty plik ``.install``, którego istnienie zapobiegnie ponownemu uruchomieniu procesu instalacji. + +Modyfikowanie szablonów aplikacji +--------------------------------- + +Frontend korzysta z systemu szablonów Jinja2, więcej informacji można znaleźć +na stronie http://jinja.pocoo.org/docs/templates/ .
--- a/frontend/mfrontend/templates/joblist.html Sun Apr 03 13:47:13 2011 +0200 +++ b/frontend/mfrontend/templates/joblist.html Sun Apr 03 14:07:19 2011 +0200 @@ -7,7 +7,9 @@ <th>Właściciel</th> <th>Hash</th> <th>Opis</th> + <th>Metoda</th> <th>Stan</th> + <th>Postęp</th> <th>Wynik</th> </tr> {% for job in jobs %} @@ -16,7 +18,14 @@ <td>{{ job.username }}</td> <td>{{ job.hash }}</td> <td>{{ job.label }}</td> + <td>{{ job.method }}</td> <td>{{ job.state_text }}</td> + <td>{% if job.percent is not sameas None %} + {{ job.percent }}% + {% else %} + brak danych + {% endif %} + </td> <td>{{ job.result }}</td> </tr> {% endfor %}