view app/views/layouts/_alerts.html.erb @ 505:7236c8864ad2

Remove ZP_ prefix from environment variable names
author nanaya <me@nanaya.net>
date Mon, 16 Dec 2024 01:42:54 +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 %>