liquid_feedback_frontend
view app/main/initiative/_sidebar_history.lua @ 1856:7d60ede7005e
Allow to hide password reset and login recover feature
| author | bsw | 
|---|---|
| date | Sat Sep 17 21:30:43 2022 +0200 (2022-09-17) | 
| parents | 32cc544d5a5b | 
| children | 
 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 = "_list", params = {
    11       for_initiative = initiative, for_sidebar = true
    12     }
    13   }
    14 end )
