liquid_feedback_frontend
view app/main/initiative/_show_voting.lua @ 157:24e47baf5f9b
strip html from fallback title
if the slot is used for title, make sure the html is stripped from it
if the slot is used for title, make sure the html is stripped from it
author | Daniel Poelzleithner <poelzi@poelzi.org> |
---|---|
date | Fri Oct 08 20:31:09 2010 +0200 (2010-10-08) |
parents | a6caaff47205 |
children | 256d9be75916 |
line source
1 local initiative = param.get("initiative", "table")
3 if initiative.revoked then
4 slot.put(_"Not voted (revoked from initiator)")
5 elseif initiative.admitted == false then
6 slot.put(_"Not voted (not admitted)")
7 else
9 execute.view{
10 module = "initiative",
11 view = "_battles",
12 params = { initiative = initiative }
13 }
15 ui.container{
16 attr = { class = "heading" },
17 content = _"Member voting"
18 }
20 execute.view{
21 module = "member",
22 view = "_list",
23 params = {
24 initiative = initiative,
25 members_selector = initiative.issue:get_reference_selector("direct_voters")
26 :left_join("vote", nil, { "vote.initiative_id = ? AND vote.member_id = member.id", initiative.id })
27 :add_field("direct_voter.weight as voter_weight")
28 :add_field("coalesce(vote.grade, 0) as grade")
29 }
30 }
32 end