%= form_for(@door_log) do |f| %>
<% if @door_log.errors.any? %>
<%= pluralize(@door_log.errors.count, "error") %> prohibited this door_log from being saved:
<% @door_log.errors.full_messages.each do |msg| %>
- <%= msg %>
<% end %>
<% end %>
<%= f.label :key %>
<%= f.text_field :key %>
<%= f.label :data %>
<%= f.number_field :data %>
<%= f.submit %>
<% end %>