liquid_feedback_frontend

view app/main/initiative/show_static.lua @ 273:7196685f9dd7

More optical enhancements, more repositioning
author bsw
date Wed Feb 08 18:49:22 2012 +0100 (2012-02-08)
parents 65a1f7a01e7b
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