liquid_feedback_frontend
view app/main/admin/index.lua @ 405:2f121e50d15c
Translation of event messages completed
| author | bsw | 
|---|---|
| date | Thu Mar 08 15:09:03 2012 +0100 (2012-03-08) | 
| parents | 74f768a162e1 | 
| children | c547d1cce741 | 
 line source
     1 slot.put_into("title", _"Admin menu")
     4 ui.tag{ tag = "ul", content = function()
     5   ui.tag{ tag= "li", content = function()
     6     ui.link{
     7       text = _"Policies",
     8       module = "admin",
     9       view = "policy_list",
    10     }
    11   end }
    12   ui.tag{ tag= "li", content = function()
    13     ui.link{
    14       text = _"Units",
    15       module = "admin",
    16       view = "unit_list",
    17     }
    18   end }
    19   ui.tag{ tag= "li", content = function()
    20     ui.link{
    21       text = _"Members",
    22       module = "admin",
    23       view = "member_list",
    24     }
    25   end }
    26 end }
