You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
333 B
8 lines
333 B
<% if flash.any? %>
|
|
<% user_facing_flashes.each do |key, value| %>
|
|
<div class="alert alert-<%= flash_class(key) %> alert-dismissable fade show" role="alert">
|
|
<strong><%= value %> </strong>
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|