liquid_feedback_frontend
view app/main/index/index.lua @ 88:dca6a57b0779
Added optional html footer (defined by config.footer_html)
author | bsw |
---|---|
date | Thu Aug 05 11:54:50 2010 +0200 (2010-08-05) |
parents | 4f39f0a0d5b5 |
children | 7d0f4721d2f3 |
line source
1 slot.select("title", function()
2 if app.session.member then
3 execute.view{
4 module = "member_image",
5 view = "_show",
6 params = {
7 member = app.session.member,
8 image_type = "avatar"
9 }
10 }
11 end
12 end)
14 slot.select("title", function()
15 ui.container{
16 attr = { class = "lang_chooser" },
17 content = function()
18 for i, lang in ipairs{"en", "de", "eo"} do
19 ui.link{
20 content = function()
21 ui.image{
22 static = "lang/" .. lang .. ".png",
23 attr = { style = "margin-left: 0.5em;", alt = lang }
24 }
25 end,
26 text = _('Select language "#{langcode}"', { langcode = lang }),
27 module = "index",
28 action = "set_lang",
29 params = { lang = lang },
30 routing = {
31 default = {
32 mode = "redirect",
33 module = request.get_module(),
34 view = request.get_view(),
35 id = param.get_id_cgi(),
36 params = param.get_all_cgi()
37 }
38 }
39 }
40 end
41 end
42 }
43 end)
45 slot.put_into("title", encode.html(config.app_title))
47 slot.select("actions", function()
49 if app.session.member then
50 ui.link{
51 content = function()
52 ui.image{ static = "icons/16/application_form.png" }
53 slot.put(_"Edit my profile")
54 end,
55 module = "member",
56 view = "edit"
57 }
58 ui.link{
59 content = function()
60 ui.image{ static = "icons/16/user_gray.png" }
61 slot.put(_"Upload images")
62 end,
63 module = "member",
64 view = "edit_images"
65 }
66 execute.view{
67 module = "delegation",
68 view = "_show_box"
69 }
70 ui.link{
71 content = function()
72 ui.image{ static = "icons/16/wrench.png" }
73 slot.put(_"Settings")
74 end,
75 module = "member",
76 view = "settings"
77 }
78 if config.download_dir then
79 ui.link{
80 content = function()
81 ui.image{ static = "icons/16/database_save.png" }
82 slot.put(_"Download")
83 end,
84 module = "index",
85 view = "download"
86 }
87 end
88 end
89 end)
91 util.help("index.index", _"Home")
93 execute.view{
94 module = "member",
95 view = "_show",
96 params = {
97 member = app.session.member,
98 show_as_homepage = true
99 }
100 }