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

8 lines
171 B
Text
Raw Normal View History

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