Skip to content

Commit

Permalink
[Backoffice] Make sure alerts also appear on the dashboard.
Browse files Browse the repository at this point in the history
  • Loading branch information
ozmodiar committed Oct 23, 2015
1 parent 4545acc commit 44d4fba
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
{% block content %}
<div class="row">
<div class="col-md-12">
{% include 'ClasticBackofficeBundle:FlashMessage:render.html.twig' %}
<div role="tabpanel" class="tabpanel">
<ul class="nav nav-tabs" role="tablist">
{% for id, tab in mainTabs %}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{% for flashMessage in app.session.flashbag.get('success') %}
<div class="alert alert-success" role="alert">
{{ flashMessage }}
</div>
{% endfor %}
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,7 @@
<div class="row">
<div class="col-md-12">
<section class="node-list">
{% for flashMessage in app.session.flashbag.get('success') %}
<div class="alert alert-success" role="alert">
{{ flashMessage }}
</div>
{% endfor %}
{% include 'ClasticBackofficeBundle:FlashMessage:render.html.twig' %}
<header class="header"></header>
<div class="table-responsive">
<table class="table table-striped table-hover">
Expand Down

0 comments on commit 44d4fba

Please sign in to comment.