ensl.org/app/views/application/_messages.html.erb

8 lines
189 B
Text
Raw Normal View History

<% [:notice, :success, :error, :warning, :alert].each do |type| %>
2014-04-06 14:14:03 +00:00
<% if flash.key?(type) %>
<div class="flash <%= type %>">
<%= flash[type] %>
</div>
<% end %>
<% end %>