diff --git a/app/views/admin/_flash_messages.html.erb b/app/views/admin/_flash_messages.html.erb
new file mode 100644
index 000000000..4a10df304
--- /dev/null
+++ b/app/views/admin/_flash_messages.html.erb
@@ -0,0 +1,20 @@
+<% if flash[:notice] %>
+
+
+
<%= flash[:notice] %>
+
+<% end %>
+
+<% if flash[:alert] %>
+
+
+
<%= flash[:alert] %>
+
+<% end %>
+
+<% if flash[:info] %>
+
+
+
<%= flash[:info] %>
+
+<% end %>
diff --git a/app/views/layouts/admin.haml b/app/views/layouts/admin.haml
index 8e8e3230e..717c5015c 100644
--- a/app/views/layouts/admin.haml
+++ b/app/views/layouts/admin.haml
@@ -27,7 +27,7 @@
= render 'menu'
.container
- = render 'shared/flash'
+ = render 'flash_messages'
= yield
.footer.text-right