liquid_feedback_frontend
view app/main/lf2/_search.lua @ 215:1dab81353eb1
More enhancements for second generation frontend
| author | bsw | 
|---|---|
| date | Sat Mar 05 15:34:17 2011 +0100 (2011-03-05) | 
| parents | 3e4ad069847a | 
| children | 
 line source
     1 ui.box{ row_count = 2, class = "search", content = function()
     2   ui.box_row{ class = "head", content = function() ui.box_col{ class = "head", content = _"Search in initiatives" } end }
     4   ui.box_row{ content = function() ui.box_col{ content = function()
     5     ui.form{
     6       content = function()
     7         slot.put(" ")
     8         ui.tag{ tag = "input", attr = { type = "text", name = "q" } }
     9         ui.submit{ text = _"Search" }
    10       end
    11     }
    12   end } end }
    14 end }
