liquid_feedback_frontend
diff app/main/index/notifications.lua @ 1045:701a5cf6b067
Imported LiquidFeedback Frontend 3.0 branch
author | bsw |
---|---|
date | Thu Jul 10 01:19:48 2014 +0200 (2014-07-10) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/app/main/index/notifications.lua Thu Jul 10 01:19:48 2014 +0200 1.3 @@ -0,0 +1,14 @@ 1.4 +if app.session.member then 1.5 + ui.title(_"Notifications") 1.6 + 1.7 + ui.section( function() 1.8 + 1.9 + ui.sectionHead( function() 1.10 + ui.heading{ level = 1, content = _"Notifications" } 1.11 + end ) 1.12 + 1.13 + ui.sectionRow( function() 1.14 + execute.view { module = "index", view = "_sidebar_notifications" } 1.15 + end ) 1.16 + end ) 1.17 +end