2006-07-29 23:54:22 +04:00
|
|
|
<h2><%= @issue.tracker.name %> #<%= @issue.id %> - <%= @issue.subject %></h2>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-09-02 17:33:23 +04:00
|
|
|
<% labelled_tabular_form_for :issue, @issue, :url => {:action => 'edit'} do |f| %>
|
|
|
|
<%= error_messages_for 'issue' %>
|
2006-07-29 13:32:58 +04:00
|
|
|
<div class="box">
|
2006-09-02 17:33:23 +04:00
|
|
|
<!--[form:issue]-->
|
|
|
|
<p><label><%=l(:field_status)%></label> <%= @issue.status.name %></p>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-09-02 17:33:23 +04:00
|
|
|
<p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></p>
|
|
|
|
<p><%= f.select :assigned_to_id, (@issue.project.members.collect {|m| [m.name, m.user_id]}), :include_blank => true %></p>
|
|
|
|
<p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}) %></p>
|
|
|
|
<p><%= f.text_field :subject, :size => 80, :required => true %></p>
|
|
|
|
<p><%= f.text_area :description, :cols => 60, :rows => 10, :required => true %></p>
|
|
|
|
<p><%= f.date_select :due_date, :start_year => Date.today.year, :include_blank => true %></p>
|
2006-07-29 23:54:22 +04:00
|
|
|
|
2006-07-31 23:52:08 +04:00
|
|
|
<% for @custom_value in @custom_values %>
|
|
|
|
<p><%= custom_field_tag_with_label @custom_value %></p>
|
2006-09-02 17:33:23 +04:00
|
|
|
<% end %>
|
2006-07-29 13:32:58 +04:00
|
|
|
|
2006-09-02 17:33:23 +04:00
|
|
|
<p><%= f.select :fixed_version_id, (@project.versions.collect {|v| [v.name, v.id]}), { :include_blank => true } %>
|
|
|
|
</select></p>
|
|
|
|
<!--[eoform:issue]-->
|
2006-07-29 13:32:58 +04:00
|
|
|
</div>
|
2006-09-09 20:07:02 +04:00
|
|
|
<%= f.hidden_field :lock_version %>
|
2006-07-29 23:54:22 +04:00
|
|
|
<%= submit_tag l(:button_save) %>
|
2006-09-02 17:33:23 +04:00
|
|
|
<% end %>
|