liquid_feedback_frontend
view app/main/admin/index.lua @ 251:cb2380e08bb5
Show currently active delegation in delegation boxes
| author | Ingo Bormuth <mail@ibormuth.de> | 
|---|---|
| date | Fri Dec 30 03:59:04 2011 +0100 (2011-12-30) | 
| parents | 86931dcee1fd | 
| children | f42d16567c5d | 
 line source
     1 slot.put_into("title", _"Admin menu")
     3 ui.link{
     4   text = _"Members",
     5   module = "admin",
     6   view = "member_list",
     7 }
     9 slot.put("<br /><br />")
    11 ui.link{
    12   text = _"Areas",
    13   module = "admin",
    14   view = "area_list",
    15 }
    17 slot.put("<br /><br />")
    20 ui.link{
    21   text = _"Policies",
    22   module = "admin",
    23   view = "policy_list",
    24 }
