<%=l(:label_issue_new)%>: <%= @tracker.name %>

<%= start_form_tag( { :action => 'add_issue', :id => @project }, :multipart => true) %> <%= error_messages_for 'issue' %>
<%= 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 %>