<%= form_for(tracker) do |f| %> <% if tracker.errors.any? %>

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

<% end %>
<%= f.label :user_id %> <%= f.text_field :user_id %>
<%= f.label :description %> <%= f.text_field :description %>
<%= f.label :budget_investment_count %> <%= f.number_field :budget_investment_count %>
<%= f.submit %>
<% end %>