photomix/app/views/shared/_notifications.html.erb

13 lines
374 B
Plaintext
Raw Normal View History

2012-07-29 00:33:03 +02:00
<% if flash[:alert] %>
<div class="alert alert-error">
<button class="close" data-dismiss="alert">×</button>
<strong><%= flash[:alert] %></strong>
</div>
<% end %>
<% if flash[:notice] %>
<div class="alert alert-success">
<button class="close" data-dismiss="alert">×</button>
<strong><%= flash[:notice] %></strong>
</div>
<% end %>