liquid_feedback_frontend
view env/ui/titleAdmin.lua @ 1641:ab837b075cf7
Fixed mldap_get_named_number_arg to not leave any element on the Lua stack (should not have had any effect anyway but is now consistent to documentation)
author | jbe |
---|---|
date | Tue Feb 09 17:44:47 2021 +0100 (2021-02-09) |
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