liquid_feedback_frontend
view app/main/lf2/settings.lua @ 219:217653875fbb
Fix registration process for units
author | bsw |
---|---|
date | Sun Mar 13 16:59:16 2011 +0100 (2011-03-13) |
parents | 7ea52c710503 |
children |
line source
1 slot.set_layout("lf2")
3 slot.put_into("leftright_pre", '<div class="sidebar_right">')
4 slot.put_into("leftright_post", '</div>')
7 ui.box{ content = function()
8 ui.box_row{ class = "head", content = function() ui.box_col{ class = "head", content = _"Member settings" } end }
9 ui.box_row{ content = function() ui.box_col{ content = function()
10 ui.link{ module = "lf2", view = "settings_password", text = _"Change password" }
11 end } end }
12 ui.box_row{ content = function() ui.box_col{ content = function()
13 ui.link{ module = "lf2", view = "settings_name", text = _"Change member or login name" }
14 end } end }
15 ui.box_row{ content = function() ui.box_col{ content = function()
16 ui.link{ module = "lf2", view = "settings_email", text = _"Change notification email address" }
17 end } end }
18 ui.box_row{ content = function() ui.box_col{ content = function()
19 ui.link{ module = "lf2", view = "settings_privacy", text = _"Privacy settings" }
20 end } end }
21 ui.box_row{ content = function() ui.box_col{ content = function()
22 ui.link{ module = "lf2", view = "settings_api", text = _"API settings" }
23 end } end }
24 ui.box_row{ content = function() ui.box_col{ content = function()
25 ui.link{ module = "lf2", view = "settings_", text = _"" }
26 end } end }
27 end }