2006-07-29 13:32:58 +04:00
|
|
|
<h2><%=_@issue.tracker.name%> #<%= @issue.id %> - <%= @issue.subject %></h2>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
|
|
|
<%= error_messages_for 'issue' %>
|
|
|
|
<%= start_form_tag :action => 'edit', :id => @issue %>
|
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
<div class="box">
|
2006-06-28 22:11:03 +04:00
|
|
|
<!--[form:issue]-->
|
|
|
|
<p><%=_('Status')%>: <b><%= @issue.status.name %></b></p>
|
|
|
|
|
|
|
|
<div style="float:left;margin-right:10px;">
|
|
|
|
<p><label for="issue_priority_id"><%=_('Priority')%> <span class="required">*</span></label><br/>
|
|
|
|
<select name="issue[priority_id]">
|
|
|
|
<%= options_from_collection_for_select @priorities, "id", "name", @issue.priority_id %></p>
|
|
|
|
</select></p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div style="float:left;margin-right:10px;">
|
|
|
|
<p><label for="issue_assigned_to_id"><%=_('Assigned to')%></label><br/>
|
|
|
|
<select name="issue[assigned_to_id]">
|
|
|
|
<option value=""></option>
|
|
|
|
<%= options_from_collection_for_select @issue.project.members, "user_id", "name", @issue.assigned_to_id %></p>
|
|
|
|
</select></p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<p><label for="issue_category_id"><%=_('Category')%></label><br/>
|
|
|
|
<select name="issue[category_id]">
|
|
|
|
<option value=""></option>
|
|
|
|
<%= options_from_collection_for_select @project.issue_categories, "id", "name", @issue.category_id %></p>
|
|
|
|
</select></p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p><label for="issue_subject"><%=_('Subject')%></label><span class="required">*</span><br/>
|
|
|
|
<%= text_field 'issue', 'subject', :size => 60 %></p>
|
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
<p><label for="issue_description"><%=_('Description')%></label><span class="required">*</span><br/>
|
|
|
|
<%= text_area 'issue', 'description', :cols => 60, :rows => 10 %></p>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
<% for custom_value in @custom_values %>
|
|
|
|
<p><%= custom_field_tag_with_label custom_value %></p>
|
2006-06-28 22:11:03 +04:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<p><label for="issue_fixed_version"><%=_('Fixed in version')%></label><br/>
|
|
|
|
<select name="issue[fixed_version_id]">
|
|
|
|
<option value="">--none--</option>
|
|
|
|
<%= options_from_collection_for_select @project.versions, "id", "name", @issue.fixed_version_id %>
|
|
|
|
</select></p>
|
2006-07-29 13:32:58 +04:00
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
<!--[eoform:issue]-->
|
2006-07-29 13:32:58 +04:00
|
|
|
</div>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
<%= submit_tag _('Save') %>
|
2006-06-28 22:11:03 +04:00
|
|
|
<%= end_form_tag %>
|