liquid_feedback_frontend
view app/main/admin/index.lua @ 595:bc6934411019
Added unit editor, small fixes at admin section
author | bsw |
---|---|
date | Sun Jun 24 20:41:50 2012 +0200 (2012-06-24) |
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 }