liquid_feedback_frontend
view env/ui/titleAdmin.lua @ 1308:7ea154c9238a
Added libbsd-dev and postgresql server-dev package to list of necessary packages to be installed for compiling/running on Debian
| author | jbe | 
|---|---|
| date | Thu Jun 23 03:30:57 2016 +0200 (2016-06-23) | 
| parents | 8c65f5a029b0 | 
| children | a17ad625ffbc | 
 line source
     1 function ui.titleAdmin(title)
     2   ui.title(function()
     3     if title then
     4       ui.link { module = "admin", view = "index", content = _"System administration" }
     5     else
     6       ui.tag{ content = _"System administration" }
     7     end
     8     if title then
     9       slot.put ( " ยป " )
    10       ui.tag { tag = "span", content = title }
    11     end
    12   end)
    13 end
