ensl.org/app/views/application/_messages.html.erb
2014-05-04 00:01:36 +01:00

9 lines
238 B
Text

<% [:notice, :success, :error, :warning, :alert].each do |type| %>
<% if flash.key?(type) %>
<div id="notification">
<div class="message <%= type %>">
<%= flash[type] %>
</div>
</div>
<% end %>
<% end %>