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
2018-12-03 23:35:51 +05:00

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