liquid_feedback_frontend
view app/main/admin/index.lua @ 151:1652c4cd3154
add broken delegations tab on homepage
if a user has delegations to an inactive account, a new red tab will apear on the homepage of the user listing his broken delegations
if a user has delegations to an inactive account, a new red tab will apear on the homepage of the user listing his broken delegations
| author | Daniel Poelzleithner <poelzi@poelzi.org> | 
|---|---|
| date | Fri Oct 08 05:24:14 2010 +0200 (2010-10-08) | 
| parents | 3bfb2fcf7ab9 | 
| children | 86931dcee1fd | 
 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 />")
    11 ui.link{
    12   text = "Areas",
    13   module = "admin",
    14   view = "area_list",
    15 }
    17 slot.put("<br />")
    20 ui.link{
    21   text = "Policies",
    22   module = "admin",
    23   view = "policy_list",
    24 }
