liquid_feedback_frontend
diff app/main/lf2/_interested.lua @ 216:4f6e6b213fb8
Cleanup on second generation frontend code and stylesheet
| author | bsw |
|---|---|
| date | Mon Mar 07 12:15:22 2011 +0100 (2011-03-07) |
| parents | 1dab81353eb1 |
| children | 73dbc9e2bfd4 |
line diff
1.1 --- a/app/main/lf2/_interested.lua Sat Mar 05 15:34:17 2011 +0100 1.2 +++ b/app/main/lf2/_interested.lua Mon Mar 07 12:15:22 2011 +0100 1.3 @@ -1,4 +1,5 @@ 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 @@ -6,7 +7,7 @@ 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 } } 1.14 + execute.view{ module = "lf2", view = "_avatars", params = { members = interested_members, issue_id = issue_id } } 1.15 end } 1.16 end } 1.17 end }