liquid_feedback_frontend

view app/main/draft/new.lua @ 4:80c215dbf076

Version alpha5

Many optical changes and improved usability

Support for different wiki-formatting-engines

Help system
author bsw/jbe
date Thu Dec 10 12:00:00 2009 +0100 (2009-12-10)
parents 5c601807d397
children 6a12fb7e4963
line source
1 slot.put_into("title", _"Edit draft")
3 local initiative = Initiative:by_id(param.get("initiative_id"))
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.current_draft,
19 attr = { class = "vertical" },
20 module = "draft",
21 action = "add",
22 params = { initiative_id = initiative.id },
23 routing = {
24 default = {
25 mode = "redirect",
26 module = "initiative",
27 view = "show",
28 id = initiative.id
29 }
30 },
31 content = function()
33 ui.field.text{ label = _"Author", value = app.session.member.name, readonly = true }
34 ui.field.select{
35 label = _"Wiki engine",
36 name = "formatting_engine",
37 foreign_records = {
38 { id = "rocketwiki", name = "RocketWiki" },
39 { id = "compat", name = _"Traditional wiki syntax" }
40 },
41 foreign_id = "id",
42 foreign_name = "name"
43 }
44 ui.field.text{
45 label = _"Content",
46 name = "content",
47 multiline = true,
48 attr = { style = "height: 50ex;" }
49 }
51 ui.submit{ text = _"Save" }
52 end
53 }

Impressum / About Us