From de24f5b788c1ae6307eb360877ea3ce61c8f7a6a Mon Sep 17 00:00:00 2001 From: Pacien TRAN-GIRARD Date: Thu, 5 Feb 2015 20:37:05 +0100 Subject: Implement flash messages --- app/controllers/Application.scala | 9 +++++---- app/views/fragments/flashBanner.scala.html | 13 +++++++++++++ app/views/pages/ebeHomepage.scala.html | 2 ++ app/views/pages/pepalHomepage.scala.html | 2 ++ app/views/templates/ebe.scala.html | 2 +- app/views/templates/main.scala.html | 4 +++- app/views/templates/pepal.scala.html | 2 +- 7 files changed, 27 insertions(+), 7 deletions(-) create mode 100644 app/views/fragments/flashBanner.scala.html (limited to 'app') diff --git a/app/controllers/Application.scala b/app/controllers/Application.scala index 3380e38..12375df 100644 --- a/app/controllers/Application.scala +++ b/app/controllers/Application.scala @@ -7,15 +7,16 @@ import play.api.mvc._ object Application extends Controller { def index = Action { - Ok(views.html.pages.index("Your new application is ready.")) + Redirect("/ebe").flashing("warning" -> "hey") + //Ok(views.html.pages.index("Your new application is ready.")) } - def ebe = Action { + def ebe = Action { implicit request => Ok(views.html.pages.ebeHomepage()) } - def pepal = Action { + def pepal = Action { implicit request => Ok(views.html.pages.pepalHomepage()) } -} \ No newline at end of file +} diff --git a/app/views/fragments/flashBanner.scala.html b/app/views/fragments/flashBanner.scala.html new file mode 100644 index 0000000..41766f9 --- /dev/null +++ b/app/views/fragments/flashBanner.scala.html @@ -0,0 +1,13 @@ +@()(implicit flash:Flash) + +@displayFlash(flashType: String) = { + @for(message <- flash.get(flashType)) { +