liquid_feedback_frontend
view env/ui/titleAdmin.lua @ 1696:446d2798f424
Automatically switch to single unit mode for users having only one unit
| author | bsw |
|---|---|
| date | Thu Sep 23 17:47:58 2021 +0200 (2021-09-23) |
| parents | a17ad625ffbc |
| children |
line source
1 function ui.titleAdmin(title)
2 ui.title(function()
3 if title then
4 ui.link { module = "admin", view = "index", content = _"System settings" }
5 else
6 ui.tag{ content = _"System settings" }
7 end
8 if title then
9 slot.put ( " ยป " )
10 ui.tag { tag = "span", content = title }
11 end
12 end)
13 end
