MiraitSystems/enju_trunk

View on GitHub
app/views/user_checkout_stats/_form.html.erb

Summary

Maintainability
Test Coverage
<%= form_for(@user_checkout_stat) do |f| -%>
  <%= f.error_messages -%>

  <div class="field">
    <%= f.label :start_date -%><br />
    <%= f.datetime_select :start_date -%>
  </div>
  <div class="field">
    <%= f.label :end_date -%><br />
    <%= f.datetime_select :end_date -%>
  </div>
  <div class="field">
    <%= f.label :note -%><br />
    <%= f.text_area :note -%>
  </div>
  <div class="actions">
    <%= f.submit %>
  </div>
<%- end -%>