photomix/app/views/shared/_notifications.html.erb
Alexander Negoda 954e3b68ae upd
2012-07-29 02:33:03 +04:00

13 lines
374 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<% 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 %>