annotate app/main/lf2/_sidebar_initiatives.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  | 
 
 | rev | 
   line source | 
| 
bsw@211
 | 
     1 local initiatives = param.get("initiatives", "table")
 | 
| 
bsw@211
 | 
     2 ui.box{ content = function()
 | 
| 
bsw@211
 | 
     3   ui.box_row{ class = "initiatives", content = function()
 | 
| 
bsw@211
 | 
     4     ui.box_col{ class = "scrolled", content = function()
 | 
| 
bsw@211
 | 
     5       execute.view{ module = "lf2", view = "_issue_initiatives", params = { initiatives = initiatives } }
 | 
| 
bsw@211
 | 
     6     end }
 | 
| 
bsw@211
 | 
     7   end }
 | 
| 
bsw@211
 | 
     8 end }
 | 
| 
bsw@211
 | 
     9 
 |