liquid_feedback_frontend
view app/main/lf2/_search.lua @ 211:4993b71b383f
First checkin of lf2 (frontend second generation) prototype
| author | bsw | 
|---|---|
| date | Wed Mar 02 20:06:26 2011 +0100 (2011-03-02) | 
| parents | |
| children | 3e4ad069847a | 
 line source
     1 ui.container{
     2   attr = { class = "boxhead" },
     3   content = _"Search in initiatives for text:"
     4 }
     6 ui.container{
     7   attr = { class = "search box" },
     8   content = function()
     9     ui.container{
    10       attr = { class = "row first" },
    11       content = function()
    12         ui.container{
    13           attr = { class = "col first" },
    14           content = function()
    16             ui.form{
    17               content = function()
    20                 slot.put(" ")
    22                 ui.tag{ tag = "input", attr = { type = "text", name = "q" } }
    24                 ui.submit{ text = _"Search" }
    26               end
    27             }
    29           end
    30         }
    32       end
    33     }
    34   end
    35 }
