liquid_feedback_frontend

view app/main/initiative/show_static.lua @ 272:65a1f7a01e7b

More optical enhancements and repositioning of elements
author bsw
date Wed Feb 08 00:55:17 2012 +0100 (2012-02-08)
parents d13b27a37ad5
children
line source
1 local initiative = param.get("initiative", "table")
3 if not initiative then
4 initiative = Initiative:new_selector():add_where{ "id = ?", param.get_id()}:single_object_mode():exec()
5 end
7 execute.view{
8 module = "issue",
9 view = "_show_head",
10 params = { issue = initiative.issue,
11 initiative = initiative }
12 }
15 execute.view{
16 module = "initiative",
17 view = "show_partial",
18 params = {
19 initiative = initiative,
20 expanded = true
21 }
22 }

Impressum / About Us