]> git.openstreetmap.org Git - rails.git/blob - app/views/layouts/_flash.html.erb
Refactor flash template
[rails.git] / app / views / layouts / _flash.html.erb
1 <% [[:error, :danger], [:warning, :warning], [:notice, :success]].each do |flash_type, bootstrap_type| %>
2   <% if flash[flash_type] %>
3     <%= tag.div :class => "alert alert-#{bootstrap_type} row mx-0 mb-0 p-3 rounded-0 align-items-center" do %>
4       <div class="col-auto">
5         <%= notice_svg_tag %>
6       </div>
7       <div class="col">
8         <%= render_flash flash[flash_type] %>
9       </div>
10     <% end %>
11   <% end %>
12 <% end %>