liquid_feedback_frontend
annotate app/main/index/_sidebar_motd_intern_top.lua @ 1839:7d000a357704
Added missing dependency
| author | bsw |
|---|---|
| date | Thu Feb 03 15:54:57 2022 +0100 (2022-02-03) |
| parents | 0cfa0d088aa0 |
| children |
| rev | line source |
|---|---|
| bsw@1702 | 1 if app.session.member and config.motd_intern_top then |
| bsw@1702 | 2 ui.container{ attr = { class = "mdl-card mdl-card__fullwidth mdl-shadow--2dp" }, content = function() |
| bsw@1702 | 3 ui.container{ attr = { class = "mdl-card__content" }, content = function() |
| bsw@1702 | 4 ui.container{ |
| bsw@1705 | 5 attr = { class = "motd" }, |
| bsw@1702 | 6 content = function() |
| bsw@1702 | 7 slot.put(config.motd_intern_top) |
| bsw@1702 | 8 end |
| bsw@1702 | 9 } |
| bsw@1702 | 10 end } |
| bsw@1702 | 11 end } |
| bsw@1702 | 12 end |