bsw@1045: ui.sidebar ( "tab-whatcanido", function () bsw@1045: bsw@1045: ui.sidebarHeadWhatCanIDo() bsw@1045: bsw@1045: if app.session.member then bsw@1045: ui.sidebarSection( function() bsw@1045: ui.heading { level = 3, content = _"I want to know whats going on" } bsw@1045: ui.tag { tag = "ul", attr = { class = "ul" }, content = function () bsw@1045: ui.tag { tag = "li", content = _"take a look on the issues (see left)" } bsw@1045: ui.tag { tag = "li", content = _"by default only those issues are shown, for which your are eligible to participate (change filters on top of the list)" } bsw@1045: end } bsw@1045: end ) bsw@1045: ui.sidebarSection( function() bsw@1045: ui.heading { level = 3, content = _"I want to stay informed" } bsw@1045: ui.tag { tag = "ul", attr = { class = "ul" }, content = function () bsw@1045: ui.tag { tag = "li", content = function () bsw@1045: ui.tag{ content = _"check your " } bsw@1045: ui.link{ bsw@1045: module = "member", view = "settings_notification", bsw@1045: params = { return_to = "home" }, bsw@1045: text = _"notifications settings" bsw@1045: } bsw@1045: end } bsw@1045: ui.tag { tag = "li", content = function () bsw@1045: ui.tag{ content = _"subscribe subject areas or add your interested to issues and you will be notified about changes (follow the instruction on the area or issue page)" } bsw@1045: end } bsw@1045: end } bsw@1045: end ) bsw@1045: ui.sidebarSection( function() bsw@1045: ui.heading { level = 3, content = _"I want to start a new initiative" } bsw@1045: ui.tag { tag = "ul", attr = { class = "ul" }, content = function () bsw@1045: ui.tag { tag = "li", content = _"open the appropriate subject area for your issue and follow the instruction on that page." } bsw@1045: end } bsw@1045: end ) bsw@1045: ui.sidebarSection( function() bsw@1045: ui.heading { level = 3, content = _"I want to delegate my vote" } bsw@1045: ui.tag { tag = "ul", attr = { class = "ul" }, content = function () bsw@1045: ui.tag { tag = "li", content = _"open the organizational unit, subject area or issue you like to delegate and follow the instruction on that page." } bsw@1045: end } bsw@1045: end ) bsw@1045: ui.sidebarSection( function() bsw@1045: ui.heading { level = 3, content = _"I want to take a look at other organizational units" } bsw@1045: ui.tag { tag = "ul", attr = { class = "ul" }, content = function () bsw@1045: ui.tag { tag = "li", content = function () bsw@1045: ui.link{ bsw@1045: module = "unit", view = "list", bsw@1045: text = _"show all units" bsw@1045: } bsw@1045: end } bsw@1045: end } bsw@1045: end ) bsw@1059: if config.download_dir then bsw@1059: ui.sidebarSection( function() bsw@1059: ui.heading { level = 3, content = _"I want to download all data" } bsw@1059: ui.tag { tag = "ul", attr = { class = "ul" }, content = function () bsw@1059: ui.tag { tag = "li", content = function () bsw@1059: ui.link{ bsw@1059: module = "index", view = "download", bsw@1059: text = _"download database" bsw@1059: } bsw@1059: end } bsw@1059: end } bsw@1059: end ) bsw@1059: end bsw@1120: end bsw@1120: ui.sidebarSection( function() bsw@1120: ui.heading { level = 3, content = _"I want to learn more about LiquidFeedback" } bsw@1120: ui.tag { tag = "ul", attr = { class = "ul" }, content = function () bsw@1120: ui.tag { tag = "li", content = function() bsw@1120: ui.link { module = "help", view = "introduction", content = _"structured discussion" } bsw@1120: end } bsw@1120: ui.tag { tag = "li", content = function() bsw@1120: ui.link { module = "help", view = "introduction", content = _"4 phases of a decision" } bsw@1120: end } bsw@1120: ui.tag { tag = "li", content = function() bsw@1120: ui.link { module = "help", view = "introduction", content = _"vote delegation" } bsw@1120: end } bsw@1120: ui.tag { tag = "li", content = function() bsw@1120: ui.link { module = "help", view = "introduction", content = _"preference voting" } bsw@1120: end } bsw@1120: end } bsw@1120: end ) bsw@1045: bsw@1045: end )