11 lines
312 B
Text
11 lines
312 B
Text
|
<% unless flash.empty? %>
|
||
|
<div class="container mt-3">
|
||
|
<% flash.each do |type, msg| %>
|
||
|
<div class="alert <%= bootstrap_class_for_flash type %> alert-dismissable fade show">
|
||
|
<%= msg %>
|
||
|
<button class="close" data-dismiss="alert">x</button>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
<% end %>
|