rev |
line source |
bsw/jbe@19
|
1 local issue = param.get("issue", "table")
|
bsw/jbe@19
|
2
|
bsw/jbe@19
|
3 local policy = issue.policy
|
bsw/jbe@19
|
4 ui.form{
|
bsw/jbe@19
|
5 record = issue,
|
bsw/jbe@19
|
6 readonly = true,
|
bsw/jbe@19
|
7 attr = { class = "vertical" },
|
bsw/jbe@19
|
8 content = function()
|
bsw@25
|
9 ui.field.text{ label = _"Population", name = "population" }
|
bsw@25
|
10 ui.field.text{ label = _"State", name = "state" }
|
bsw@25
|
11 ui.field.timestamp{ label = _"Created at", name = "created" }
|
bsw@25
|
12 ui.field.text{ label = _"Admission time", value = issue.admission_time }
|
bsw/jbe@19
|
13 ui.field.text{
|
bsw/jbe@19
|
14 label = _"Issue quorum",
|
bsw/jbe@19
|
15 value = format.percentage(policy.issue_quorum_num / policy.issue_quorum_den)
|
bsw/jbe@19
|
16 }
|
bsw@255
|
17 if issue.population then
|
bsw@255
|
18 ui.field.text{
|
bsw@255
|
19 label = _"Currently required",
|
bsw@255
|
20 value = math.ceil(issue.population * policy.issue_quorum_num / policy.issue_quorum_den)
|
bsw@255
|
21 }
|
bsw@255
|
22 end
|
bsw@25
|
23 ui.field.timestamp{ label = _"Accepted at", name = "accepted" }
|
bsw@25
|
24 ui.field.text{ label = _"Discussion time", value = issue.discussion_time }
|
bsw@25
|
25 ui.field.vote_now{ label = _"Vote now", name = "vote_now" }
|
bsw@25
|
26 ui.field.vote_later{ label = _"Vote later", name = "vote_later" }
|
bsw@25
|
27 ui.field.timestamp{ label = _"Half frozen at", name = "half_frozen" }
|
bsw@25
|
28 ui.field.text{ label = _"Verification time", value = issue.verification_time }
|
bsw/jbe@19
|
29 ui.field.text{
|
bsw/jbe@19
|
30 label = _"Initiative quorum",
|
bsw/jbe@19
|
31 value = format.percentage(policy.initiative_quorum_num / policy.initiative_quorum_den)
|
bsw/jbe@19
|
32 }
|
bsw@255
|
33 if issue.population then
|
bsw@255
|
34 ui.field.text{
|
bsw@255
|
35 label = _"Currently required",
|
bsw@255
|
36 value = math.ceil(issue.population * (issue.policy.initiative_quorum_num / issue.policy.initiative_quorum_den)),
|
bsw@255
|
37 }
|
bsw@255
|
38 end
|
bsw@25
|
39 ui.field.timestamp{ label = _"Fully frozen at", name = "fully_frozen" }
|
bsw@25
|
40 ui.field.text{ label = _"Voting time", value = issue.voting_time }
|
bsw@25
|
41 ui.field.timestamp{ label = _"Closed", name = "closed" }
|
bsw/jbe@19
|
42 end
|
bsw/jbe@19
|
43 }
|
bsw/jbe@19
|
44 ui.form{
|
bsw/jbe@19
|
45 record = issue.policy,
|
bsw/jbe@19
|
46 readonly = true,
|
bsw/jbe@19
|
47 content = function()
|
bsw/jbe@19
|
48 end
|
bsw/jbe@19
|
49 }
|