<%= hidden_field_tag 'tracker_id', @tracker.id %>
<%= text_field 'issue', 'subject', :size => 80 %>
<%= text_area 'issue', 'description', :cols => 60, :rows => 10 %>
<%= date_select 'issue', 'due_date', :start_year => Date.today.year, :include_blank => true %>
<% for @custom_value in @custom_values %>
<%= custom_field_tag_with_label @custom_value %>
<% end %>
<%= file_field 'attachment', 'file' %>
<%= submit_tag l(:button_create) %>
<%= end_form_tag %>