liquid_feedback_frontend
diff app/main/area/_list.lua @ 380:99cb2d8e2f46
merge
| author | jbe |
|---|---|
| date | Mon Mar 05 11:16:41 2012 +0100 (2012-03-05) |
| parents | 2dae61588cee |
| children | b155ca3744c5 |
line diff
1.1 --- a/app/main/area/_list.lua Mon Mar 05 11:15:22 2012 +0100 1.2 +++ b/app/main/area/_list.lua Mon Mar 05 11:16:41 2012 +0100 1.3 @@ -32,6 +32,38 @@ 1.4 1.5 ui.container{ attr = { class = "area_list" }, content = function() 1.6 1.7 + ui.container{ attr = { class = "area head" }, content = function() 1.8 + 1.9 + ui.container{ attr = { class = "phases" }, content = function() 1.10 + 1.11 + ui.container{ attr = { class = "admission" }, content = function() 1.12 + ui.image{ static = "icons/16/new.png" } 1.13 + end } 1.14 + 1.15 + ui.container{ attr = { class = "discussion" }, content = function() 1.16 + ui.image{ static = "icons/16/comments.png" } 1.17 + end } 1.18 + 1.19 + ui.container{ attr = { class = "verification" }, content = function() 1.20 + ui.image{ static = "icons/16/lock.png" } 1.21 + end } 1.22 + 1.23 + ui.container{ attr = { class = "voting" }, content = function() 1.24 + ui.image{ static = "icons/16/email_open.png" } 1.25 + end } 1.26 + 1.27 + ui.container{ attr = { class = "finished" }, content = function() 1.28 + ui.image{ static = "icons/16/tick.png" } 1.29 + end } 1.30 + 1.31 + ui.container{ attr = { class = "cancelled" }, content = function() 1.32 + ui.image{ static = "icons/16/cross.png" } 1.33 + end } 1.34 + 1.35 + end } 1.36 + 1.37 + end } 1.38 + 1.39 for i, area in ipairs(areas_selector:exec()) do 1.40 1.41 ui.container{ attr = { class = "area" }, content = function() 1.42 @@ -164,7 +196,7 @@ 1.43 1.44 end } 1.45 1.46 - slot.put("<br />") 1.47 + slot.put("<br style='clear: right;' />") 1.48 end } 1.49 1.50 end