1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/application/_flash.html.erb

11 lines
312 B
Text
Raw Normal View History

2018-12-03 12:58:39 -05:00
<% 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 %>