Files
old-holivud2/app/views/application/_flash.html.erb
2020-05-31 22:38:19 +02:00

6 lines
264 B
Plaintext

<% if flash.alert.present? %>
<div class="alert alert-danger text-center text-md-left"><%= flash.alert.html_safe %></div>
<% elsif flash.notice.present? %>
<div class="alert alert-primary text-center text-md-left"><%= flash.notice.html_safe %></div>
<% end %>