mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
9 lines
277 B
Plaintext
9 lines
277 B
Plaintext
<% if content.errors.any? %>
|
|
<div class="card-panel red lighten-4">
|
|
This <%= content.class.to_s.downcase %> couldn't be saved because of the following errors:
|
|
<% content.errors.full_messages.each do |msg| %>
|
|
<li><%= msg %></li>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|