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