14 lines
362 B
Text
14 lines
362 B
Text
<% if flash[:alert] || flash[:notice] %>
|
|
<% if flash[:alert] %>
|
|
<div class="alert alert-danger" role="alert">
|
|
<%= flash[:alert] %><% flash.delete(:alert) %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% if flash[:notice] %>
|
|
<div class="alert alert-info" role="alert">
|
|
<%= flash[:notice] %>
|
|
<% flash.delete(:notice) %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|