]> git.openstreetmap.org Git - rails.git/blob - app/views/layouts/_flash.html.erb
Merge remote-tracking branch 'upstream/pull/5116'
[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",
4                 :data => { :turbo_temporary => true } do %>
5       <div class="col-auto">
6         <%= notice_svg_tag %>
7       </div>
8       <div class="col">
9         <%= render_flash flash[flash_type] %>
10       </div>
11     <% end %>
12   <% end %>
13 <% end %>