liquid_feedback_frontend
view app/main/issue/_show_box.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 | 88ac7798b562 |
line source
1 local issue = param.get("issue", "table")
3 slot.select("issue_info", function()
4 ui.field.text{
5 label = _"Policy",
6 value = issue.policy.name
7 }
8 ui.field.text{
9 label = _"State",
10 value = issue.state_name
11 }
12 local time_left = issue.state_time_left
13 if time_left then
14 ui.field.text{
15 label = _"Time left",
16 value = time_left
17 }
18 end
19 local next_state_names = issue.next_states_names
20 if next_state_names then
21 ui.field.text{
22 label = _"Next state",
23 value = next_state_names
24 }
25 end
26 end)