liquid_feedback_frontend
diff app/main/index/405.lua @ 1309:32cc544d5a5b
Cumulative patch for upcoming frontend version 4
author | bsw/jbe |
---|---|
date | Sun Jul 15 14:07:29 2018 +0200 (2018-07-15) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/app/main/index/405.lua Sun Jul 15 14:07:29 2018 +0200 1.3 @@ -0,0 +1,21 @@ 1.4 +request.set_status("405 Method Not Allowed") 1.5 + 1.6 +ui.title("405 Method Not Allowed") 1.7 + 1.8 +ui.grid{ content = function() 1.9 + 1.10 + ui.cell_main{ content = function() 1.11 + 1.12 + ui.container { attr = { class = "mdl-card mdl-shadow--2dp mdl-card__fullwidth" }, content = function() 1.13 + ui.container{ attr = { class = "mdl-card__title mdl-card--border" }, content = function() 1.14 + ui.heading { attr = { class = "mdl-card__title-text" }, level = 2, content = _"Method not allowed" } 1.15 + end } 1.16 + ui.container{ attr = { class = "mdl-card__content" }, content = function() 1.17 + ui.link{ 1.18 + content = _"Go back to home page", 1.19 + module = "index", view = "index" 1.20 + } 1.21 + end } 1.22 + end } 1.23 + end } 1.24 +end }