mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
416 B
15 lines
416 B
<% if resource.errors.any? %>
|
|
<div id="error_explanation" data-turbo-cache="false">
|
|
<h2>
|
|
<%= I18n.t('errors.messages.not_saved',
|
|
count: resource.errors.count,
|
|
resource: resource.class.model_name.human.downcase) %>
|
|
</h2>
|
|
<ul>
|
|
<% resource.errors.full_messages.each do |message| %>
|
|
<li><%= message %></li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
<% end %>
|