mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
18 lines
457 B
Plaintext
18 lines
457 B
Plaintext
<%= form_with(model: timeline, local: true) do |form| %>
|
|
<% if timeline.errors.any? %>
|
|
<div id="error_explanation">
|
|
<h2><%= pluralize(timeline.errors.count, "error") %> prohibited this timeline from being saved:</h2>
|
|
|
|
<ul>
|
|
<% timeline.errors.full_messages.each do |message| %>
|
|
<li><%= message %></li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
<% end %>
|
|
|
|
<div class="actions">
|
|
<%= form.submit %>
|
|
</div>
|
|
<% end %>
|