ensl.org/app/views/application/_messages.html.erb
2014-04-07 11:04:56 +01:00

7 lines
171 B
Text

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