Files
grecia/app/views/shared/_errors.html.erb
2019-09-10 20:02:15 +02:00

18 lines
597 B
Plaintext

<% if resource.errors.any? %>
<div id="error_explanation" data-alert class="callout alert" data-closable>
<button class="close-button" aria-label="<%= t("application.close") %>" type="button" data-close>
<span aria-hidden="true">&times;</span>
</button>
<strong>
<%= pluralize resource.errors.count, t("form.error"), t("form.errors") %>
<% if local_assigns[:message].present? %>
<%= message %>
<% else %>
<%= t("form.not_saved_html", resource: t("form.#{resource.class.to_s.underscore}")) %>
<% end %>
</strong>
</div>
<% end %>