liquid_feedback_frontend
view app/main/suggestion/show.lua @ 41:53a45356c107
Several bugfixes, including bugfix in timeline
- Fixed grouping of multiple new drafts in timeline
- Do not allow to add suggestions when issue is half frozen
- Do not show initiator invitations for (half-)frozen or closed issues
- Fixed problem with duplicates in display of vote-later requests
- Clarified german "member is participating" info text in delegation chain
- Hide inactive members from member listing
- Fixed grouping of multiple new drafts in timeline
- Do not allow to add suggestions when issue is half frozen
- Do not show initiator invitations for (half-)frozen or closed issues
- Fixed problem with duplicates in display of vote-later requests
- Clarified german "member is participating" info text in delegation chain
- Hide inactive members from member listing
author | bsw |
---|---|
date | Sun Mar 07 15:36:54 2010 +0100 (2010-03-07) |
parents | 00d1004545f1 |
children | 7d0f4721d2f3 |
line source
1 local suggestion = Suggestion:by_id(param.get_id())
3 slot.put_into("title", encode.html(_"Suggestion for initiative: '#{name}'":gsub("#{name}", suggestion.initiative.name) ))
5 slot.select("actions", function()
6 ui.link{
7 content = function()
8 ui.image{ static = "icons/16/resultset_previous.png" }
9 slot.put(_"Back")
10 end,
11 module = "initiative",
12 view = "show",
13 id = suggestion.initiative.id,
14 params = { tab = "suggestions" }
15 }
16 end)
18 execute.view{
19 module = "suggestion",
20 view = "show_tab",
21 params = {
22 suggestion = suggestion
23 }
24 }