liquid_feedback_frontend
view app/main/issue/show.lua @ 124:f740026b1518
add initiator support in delegation
if a delegation is issued from the initiative view, the initiators
from that one are added to the delegation target list. this makes it easier to delegate to the author without the need to add him to the contact list.
if a delegation is issued from the initiative view, the initiators
from that one are added to the delegation target list. this makes it easier to delegate to the author without the need to add him to the contact list.
author | Daniel Poelzleithner <poelzi@poelzi.org> |
---|---|
date | Mon Sep 20 20:32:04 2010 +0200 (2010-09-20) |
parents | 18fbd62e8595 |
children | 7196685f9dd7 |
line source
1 local issue = Issue:by_id(param.get_id())
3 if not app.html_title.title then
4 app.html_title.title = _("Issue ##{id}", { id = issue.id })
5 end
7 execute.view{
8 module = "issue",
9 view = "_show_head",
10 params = { issue = issue }
11 }
13 --[[
14 if not issue.fully_frozen and not issue.closed then
15 slot.select("actions", function()
16 ui.link{
17 content = function()
18 ui.image{ static = "icons/16/script_add.png" }
19 slot.put(_"Create alternative initiative")
20 end,
21 module = "initiative",
22 view = "new",
23 params = { issue_id = issue.id }
24 }
25 end)
26 end
27 --]]
29 util.help("issue.show")
31 if issue.state == "cancelled" then
32 local policy = issue.policy
33 ui.container{
34 attr = { class = "not_admitted_info" },
35 content = _("This issue has been cancelled. It failed the quorum of #{quorum}.", { quorum = format.percentage(policy.issue_quorum_num / policy.issue_quorum_den) })
36 }
37 end
39 ui.container{
40 attr = { class = "issue_initiative_list" },
41 content = function()
42 execute.view{
43 module = "initiative",
44 view = "_list",
45 params = {
46 initiatives_selector = issue:get_reference_selector("initiatives"),
47 issue = issue,
48 expandable = true,
49 for_initiative_id = param.get("for_initiative_id", atom.number),
50 show_for_issue = true
51 }
52 }
53 end
54 }
56 slot.put("<br />")
58 execute.view{
59 module = "issue",
60 view = "show_tab",
61 params = { issue = issue }
62 }
64 if issue.snapshot then
65 slot.put("<br />")
66 ui.field.timestamp{ label = _"Last snapshot:", value = issue.snapshot }
67 end