liquid_feedback_frontend
view app/main/lf2/_initiatives.lua @ 215:1dab81353eb1
More enhancements for second generation frontend
author | bsw |
---|---|
date | Sat Mar 05 15:34:17 2011 +0100 (2011-03-05) |
parents | 4993b71b383f |
children | 4f6e6b213fb8 |
line source
1 local initiatives = param.get("initiatives", "table")
3 initiatives:load("initiating_members", nil, "initiating_members")
5 ui.box{ content = function()
6 for i, initiative in ipairs(initiatives) do
8 ui.box_row{ class = "initiative", content = function() ui.box_col { content = function()
9 execute.view{ module = "lf2", view = "_initiative", params = { initiative = initiative } }
10 end } end }
12 end
13 end }