# HG changeset patch # User mild@mild-laptop # Date 1304898600 -7200 # Node ID 9916d46ff096414bf8b5f6bd0d73fac438e59dc8 # Parent 9a45dfaec15784c7e0756cf43ecac464ea937347 Wrzucony layout - zostały jakieś drobne poprawki + zmiana źródeł (nie można np utworzyć foldery /pic/ i z niego ściągać obrazków) diff -r 9a45dfaec157 -r 9916d46ff096 frontend/mfrontend/db.py --- a/frontend/mfrontend/db.py Mon Apr 11 09:50:23 2011 +0200 +++ b/frontend/mfrontend/db.py Mon May 09 01:50:00 2011 +0200 @@ -135,9 +135,12 @@ sqlLine = "select * from jobs where " + sqlLine + ";" result = query_db(sqlLine,parameters) # teraz trochę upiększamy wynik, np. pobierając nazwy użytkowników + index = 0 for job in result: + job['index'] = index job['username'] = get_user_name(job['owner_id']) job['state_text'] = states[job['state']] + index = index + 1 return result def get_waiting_job(): diff -r 9a45dfaec157 -r 9916d46ff096 frontend/mfrontend/templates/joblist.html --- a/frontend/mfrontend/templates/joblist.html Mon Apr 11 09:50:23 2011 +0200 +++ b/frontend/mfrontend/templates/joblist.html Mon May 09 01:50:00 2011 +0200 @@ -1,19 +1,24 @@ {% extends "layout.html" %} {% block body %} -
id | -Właściciel | -Hash | -Opis | -Metoda | -Stan | -Postęp | -Wynik | +id | +Właściciel | +Hash | +Opis | +Metoda | +Stan | +Postęp | +Wynik | +
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ job.id }} | {{ job.username }} | {{ job.hash }} | @@ -30,4 +35,10 @@