liquid_feedback_frontend
view app/main/unit/list.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 | 2a0d86117d54 |
children |
line source
1 ui.title(_"Unit list")
3 ui.grid{ content = function()
4 ui.cell_main{ content = function()
6 ui.container{ attr = { class = "mdl-card mdl-card__fullwidth mdl-shadow--2dp" }, content = function()
7 ui.container{ attr = { class = "mdl-card__title mdl-card--border" }, content = function()
8 ui.heading { attr = { class = "mdl-card__title-text" }, level = 2, content = _"Unit list" }
9 end }
10 ui.container{ attr = { class = "mdl-card__content mdl-card--border" }, content = function()
12 execute.view{ module = "unit", view = "_list" }
13 end }
14 end }
15 end }
16 end }