2006-12-24 18:41:23 +03:00
|
|
|
<h2><%= @issue.tracker.name %> #<%= @issue.id %> - <%=h @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]-->
|
2006-11-12 21:50:30 +03:00
|
|
|
<div class="splitcontentleft">
|
2006-09-02 17:33:23 +04:00
|
|
|
<p><label><%=l(:field_status)%></label> <%= @issue.status.name %></p>
|
|
|
|
<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>
|
2007-03-19 20:46:02 +03:00
|
|
|
<p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %></p>
|
2006-11-12 21:50:30 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="splitcontentright">
|
|
|
|
<p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p>
|
|
|
|
<p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p>
|
|
|
|
<p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="clear">
|
2006-09-02 17:33:23 +04:00
|
|
|
<p><%= f.text_field :subject, :size => 80, :required => true %></p>
|
2007-03-11 17:22:53 +03:00
|
|
|
<p><%= f.text_area :description, :required => true, :cols => 60, :rows => [[10, @issue.description.length / 50].max, 100].min, :class => 'wiki-edit' %></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
|
|
|
|
2007-03-20 21:37:53 +03:00
|
|
|
<p><%= f.select :fixed_version_id, (@project.versions.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p>
|
2006-11-12 21:50:30 +03:00
|
|
|
</div>
|
2006-09-02 17:33:23 +04:00
|
|
|
<!--[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-11-05 19:49:27 +03:00
|
|
|
<% end %>
|
|
|
|
|
2007-01-21 14:50:22 +03:00
|
|
|
<% if Setting.text_formatting == 'textile' %>
|
2006-11-05 19:49:27 +03:00
|
|
|
<%= javascript_include_tag 'jstoolbar' %>
|
|
|
|
<script type="text/javascript">
|
|
|
|
//<![CDATA[
|
|
|
|
if (document.getElementById) {
|
|
|
|
if (document.getElementById('issue_description')) {
|
|
|
|
var commentTb = new jsToolBar(document.getElementById('issue_description'));
|
|
|
|
commentTb.draw();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//]]>
|
2006-11-12 21:50:30 +03:00
|
|
|
</script>
|
2007-01-06 12:08:17 +03:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= javascript_include_tag 'calendar/calendar' %>
|
|
|
|
<%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
|
|
|
|
<%= javascript_include_tag 'calendar/calendar-setup' %>
|
|
|
|
<%= stylesheet_link_tag 'calendar' %>
|
2006-11-12 21:50:30 +03:00
|
|
|
<% end %>
|