27 lines
636 B
Text
27 lines
636 B
Text
<%= form_with(model: command) do |form| %>
|
|
<% if command.errors.any? %>
|
|
<div style="color: red">
|
|
<h2><%= pluralize(command.errors.count, "error") %> prohibited this command from being saved:</h2>
|
|
|
|
<ul>
|
|
<% command.errors.each do |error| %>
|
|
<li><%= error.full_message %></li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
<% end %>
|
|
|
|
<div>
|
|
<%= form.label :name, style: "display: block" %>
|
|
<%= form.text_field :name %>
|
|
</div>
|
|
|
|
<div>
|
|
<%= form.label :datatype_id, style: "display: block" %>
|
|
<%= form.text_field :datatype_id %>
|
|
</div>
|
|
|
|
<div>
|
|
<%= form.submit %>
|
|
</div>
|
|
<% end %>
|