view app/views/layouts/_alerts.html.erb @ 458:1c6a056269e6

RIP rubocop
author nanaya <me@nanaya.pro>
date Sat, 14 Apr 2018 04:19:29 +0900
parents 16f1b4f8ce94
children 68231013b01b
line wrap: on
line source

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

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