view app/views/layouts/_alerts.html.erb @ 399:4bf12ecde0ee

Back to default.
author nanaya <me@myconan.net>
date Sun, 06 Sep 2015 03:53:34 +0900
parents 62fef621f39c
children 16f1b4f8ce94
line wrap: on
line source

<% if notice %>
  <div class="alert alert-info">
    <strong>Info:</strong>
    <%= notice %>
  </div>
<% end %>

<% if alert %>
  <div class="alert alert-danger">
    <strong>Error:</strong>
    <%= alert %>
  </div>
<% end %>