liquid_feedback_frontend
view app/main/initiative/_suggestions.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 | 0849be391140 | 
 line source
     1 local initiative = param.get("initiative", "table")
     3 if not initiative.issue.half_frozen and not initiative.issue.closed and not initiative.revoked then
     4   ui.link{
     5     content = function()
     6       ui.image{ static = "icons/16/comment_add.png" }
     7       slot.put(_"Add new suggestion")
     8     end,
     9     module = "suggestion",
    10     view = "new",
    11     params = {
    12       initiative_id = initiative.id
    13     }
    14   }
    15 end
    17 execute.view{
    18   module = "suggestion",
    19   view = "_list",
    20   params = {
    21     initiative = initiative,
    22     suggestions_selector = initiative:get_reference_selector("suggestions"),
    23     tab_id = param.get("tab_id")
    24   }
    25 }
