liquid_feedback_frontend
view app/main/lf2/_initiatives.lua @ 291:71eed60f6a41
Closed branch of experimental frontend
author | jbe |
---|---|
date | Sat Feb 25 15:56:55 2012 +0100 (2012-02-25) |
parents | 4f6e6b213fb8 |
children |
line source
1 local initiatives = param.get("initiatives", "table")
3 initiatives:load("initiating_members", nil, "initiating_members")
5 for i, initiative in ipairs(initiatives) do
7 ui.box_row{ class = "initiative", content = function() ui.box_col { content = function()
8 execute.view{ module = "lf2", view = "_initiative", params = { initiative = initiative } }
9 end } end }
11 end