blob: 37a441b3f54d122cd482bb899ab882deeedf500f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
local artikkel = blueprint("anmeldelse")
function artikkel.env(data)
data.terningkast = os.getenv("POST_terningkast") or ""
data.publisert = os.getenv("POST_publisert") or ""
end
function artikkel.form(body, data)
html.p()
html.label("Overskrift:")
html.text('title', data.title, 32)
html.p()
html.label("Terningkast:")
html.p(data.terningkast)
html.select('terningkast', { 1, 2, 3, 4, 5, 6 }, data.terningkast or 1)
html.p()
html.textarea('tekst', body)
html.hidden('type', 'anmeldelse')
end
return artikkel
|