liquid_feedback_frontend
diff app/main/lf2/_interested.lua @ 217:73dbc9e2bfd4
Cummulative patch for enhancements at next generation frontend
author | bsw |
---|---|
date | Sat Mar 12 19:22:50 2011 +0100 (2011-03-12) |
parents | 4f6e6b213fb8 |
children |
line diff
1.1 --- a/app/main/lf2/_interested.lua Mon Mar 07 12:15:22 2011 +0100 1.2 +++ b/app/main/lf2/_interested.lua Sat Mar 12 19:22:50 2011 +0100 1.3 @@ -1,13 +0,0 @@ 1.4 -local interested_members = param.get("interested_members", "table") 1.5 -local issue_id = param.get("issue_id", atom.integer) 1.6 -ui.box{ row_count = 2, content = function() 1.7 - ui.box_row{ class = "head interested", content = function() 1.8 - ui.box_col{ class = "head left", content = _"Members, interested in this issue" } 1.9 - ui.box_col{ class = "right", content = _("#{count} members", { count = #interested_members }) } 1.10 - end } 1.11 - ui.box_row{ class = "interested", content = function() 1.12 - ui.box_col{ class = "", content = function() 1.13 - execute.view{ module = "lf2", view = "_avatars", params = { members = interested_members, issue_id = issue_id } } 1.14 - end } 1.15 - end } 1.16 -end }