view app/views/layouts/_alerts.html.erb @ 476:5d3567759915

Update gems
author nanaya <me@nanaya.pro>
date Thu, 06 Aug 2020 23:08:41 +0900
parents 68231013b01b
children
line wrap: on
line source

<% if notice %>
  <div class="alert alert-info" role="alert">
    <strong><%= t(".info") %>:</strong>
    <%= notice %>
  </div>
<% end %>

<% if alert %>
  <div class="alert alert-danger" role="alert">
    <strong><%= t(".error") %>:</strong>
    <%= alert %>
  </div>
<% end %>