liquid_feedback_frontend
view app/main/index/_sidebar_motd_intern_top.lua @ 1838:bee9e998fa4d
Fixed new suggestion dialog layout and error redirect
author | bsw |
---|---|
date | Thu Feb 03 13:06:21 2022 +0100 (2022-02-03) |
parents | 0cfa0d088aa0 |
children |
line source
1 if app.session.member and config.motd_intern_top then
2 ui.container{ attr = { class = "mdl-card mdl-card__fullwidth mdl-shadow--2dp" }, content = function()
3 ui.container{ attr = { class = "mdl-card__content" }, content = function()
4 ui.container{
5 attr = { class = "motd" },
6 content = function()
7 slot.put(config.motd_intern_top)
8 end
9 }
10 end }
11 end }
12 end