liquid_feedback_frontend
view app/main/initiative/_sidebar_history.lua @ 1160:65904de98d5e
Fixed basepath for image delivery with WebMCP 1.2.6
author | bsw |
---|---|
date | Tue Mar 24 12:36:19 2015 +0100 (2015-03-24) |
parents | 701a5cf6b067 |
children | 32cc544d5a5b |
line source
1 local initiative = param.get("initiative", "table")
4 ui.sidebar( function ()
5 ui.sidebarHead( function ()
6 ui.link { attr = { name = "history" }, text = "" }
7 ui.heading { level = 1, content = _"History" }
8 end )
9 execute.view {
10 module = "issue", view = "_list2", params = {
11 for_initiative = initiative, for_sidebar = true
12 }
13 }
14 end )