liquid_feedback_frontend

view app/main/initiative/edit.lua @ 5:afd9f769c7ae

Version beta1

Final voting with Schulze-Method is now possible

Many bug fixes and code cleanup

Registration with invite codes

More sort and filter options

Seperated display of "supporters" and "potential supporters"

Optical changes

Flood limit / initiative contigent is now checked by frontend

Neccessary changes to access core beta11
author bsw/jbe
date Fri Dec 25 12:00:00 2009 +0100 (2009-12-25)
parents 80c215dbf076
children
line source
1 local initiative = Initiative:by_id(param.get_id())
3 slot.put_into("title", _"Edit initiative")
5 slot.select("actions", function()
6 ui.link{
7 content = function()
8 ui.image{ static = "icons/16/cancel.png" }
9 slot.put(_"Cancel")
10 end,
11 module = "initiative",
12 view = "show",
13 id = initiative.id
14 }
15 end)
17 ui.form{
18 record = initiative,
19 module = "initiative",
20 action = "update",
21 id = initiative.id,
22 attr = { class = "vertical" },
23 routing = {
24 default = {
25 mode = "redirect",
26 module = "initiative",
27 view = "show",
28 id = initiative.id
29 }
30 },
31 content = function()
32 ui.field.text{ label = _"Discussion URL", name = "discussion_url" }
33 ui.submit{ text = _"Save" }
34 end
35 }

Impressum / About Us