liquid_feedback_frontend
view app/main/admin/index.lua @ 804:b690dfa23f95
Backed out changeset c0a0a3747a29 (wrong timestamp in commit)
author | jbe |
---|---|
date | Sat Jun 30 02:41:47 2012 +0200 (2012-06-30) |
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 }