%= form_with(model: execution) do |form| %>
<% if execution.errors.any? %>
<%= pluralize(execution.errors.count, "error") %> prohibited this execution from being saved:
<% execution.errors.each do |error| %>
- <%= error.full_message %>
<% end %>
<% end %>
<%= form.label :command_id, style: "display: block" %>
<%= form.text_field :command_id %>
<%= form.label :value, style: "display: block" %>
<%= form.text_field :value %>
<%= form.submit %>
<% end %>