<%= form_with(model: delivery) do |form| %> <% if delivery.errors.any? %>

<%= pluralize(delivery.errors.count, "error") %> prohibited this delivery from being saved:

<% end %>
<%= form.label :message_id, style: "display: block" %> <%= form.text_field :message_id %>
<%= form.label :status, style: "display: block" %> <%= form.text_field :status %>
<%= form.label :code, style: "display: block" %> <%= form.number_field :code %>
<%= form.label :output, style: "display: block" %> <%= form.text_field :output %>
<%= form.label :details, style: "display: block" %> <%= form.text_field :details %>
<%= form.label :sent_with_ssl, style: "display: block" %> <%= form.check_box :sent_with_ssl %>
<%= form.label :log_id, style: "display: block" %> <%= form.text_field :log_id %>
<%= form.label :timestamp, style: "display: block" %> <%= form.text_field :timestamp %>
<%= form.label :time, style: "display: block" %> <%= form.text_field :time %>
<%= form.submit %>
<% end %>