liquid_feedback_frontend
diff app/main/lf2/_interested.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 diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/app/main/lf2/_interested.lua Wed Mar 02 20:06:26 2011 +0100 1.3 @@ -0,0 +1,12 @@ 1.4 +local interested_members = param.get("interested_members", "table") 1.5 +ui.box{ content = function() 1.6 + ui.box_row{ class = "head interested", content = function() 1.7 + ui.box_col{ class = "", content = _"Interested members" } 1.8 + end } 1.9 + ui.box_row{ class = "interested", content = function() 1.10 + ui.box_col{ content = _"The interested members are updated after some time." } 1.11 + ui.box_col{ class = "", content = function() 1.12 + execute.view{ module = "lf2", view = "_avatars", params = { members = interested_members } } 1.13 + end } 1.14 + end } 1.15 +end }