liquid_feedback_frontend
annotate app/main/initiative/_sidebar_history.lua @ 1149:911253ad0898
Removed sql tracer initialization
| author | bsw | 
|---|---|
| date | Sun Mar 22 18:54:08 2015 +0100 (2015-03-22) | 
| parents | 701a5cf6b067 | 
| children | 32cc544d5a5b | 
| rev | line source | 
|---|---|
| bsw@1045 | 1 local initiative = param.get("initiative", "table") | 
| bsw@1045 | 2 | 
| bsw@1045 | 3 | 
| bsw@1045 | 4 ui.sidebar( function () | 
| bsw@1045 | 5 ui.sidebarHead( function () | 
| bsw@1045 | 6 ui.link { attr = { name = "history" }, text = "" } | 
| bsw@1045 | 7 ui.heading { level = 1, content = _"History" } | 
| bsw@1045 | 8 end ) | 
| bsw@1045 | 9 execute.view { | 
| bsw@1045 | 10 module = "issue", view = "_list2", params = { | 
| bsw@1045 | 11 for_initiative = initiative, for_sidebar = true | 
| bsw@1045 | 12 } | 
| bsw@1045 | 13 } | 
| bsw@1045 | 14 end ) |