forked from OpenNeo/impress
Matchu
83f80facda
A lot of rough edges here (e.g. no styles on the flash messages), but it's working and that's good!! I tested this by temporarily switching to the production database and logging in as matchu! Still missing a lot of big features too, like registration, password resets, settings page, etc.
15 lines
423 B
Text
15 lines
423 B
Text
<% 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 %>
|