liquid_feedback_frontend
annotate app/main/lf2/_search.lua @ 213:acf92c2d33f4
Seperated css and fixed issue delegations for second generation frontend
author | bsw |
---|---|
date | Thu Mar 03 21:26:35 2011 +0100 (2011-03-03) |
parents | 3e4ad069847a |
children | 1dab81353eb1 |
rev | line source |
---|---|
bsw@212 | 1 ui.box{ class = "search", content = function() |
bsw@212 | 2 ui.box_row{ class = "head", content = function() ui.box_col{ class = "head", content = _"Search in initiatives" } end } |
bsw@211 | 3 |
bsw@212 | 4 ui.box_row{ content = function() ui.box_col{ content = function() |
bsw@212 | 5 ui.form{ |
bsw@212 | 6 content = function() |
bsw@212 | 7 slot.put(" ") |
bsw@212 | 8 ui.tag{ tag = "input", attr = { type = "text", name = "q" } } |
bsw@212 | 9 ui.submit{ text = _"Search" } |
bsw@211 | 10 end |
bsw@211 | 11 } |
bsw@212 | 12 end } end } |
bsw@212 | 13 |
bsw@212 | 14 end } |