edit.rhtml
55 lines
| 2.1 KiB
| text/html+ruby
|
RhtmlLexer
|
r104 | <h2><%= @issue.tracker.name %> #<%= @issue.id %> - <%=h @issue.subject %></h2> | |
|
r2 | ||
|
r19 | <% labelled_tabular_form_for :issue, @issue, :url => {:action => 'edit'} do |f| %> | |
<%= error_messages_for 'issue' %> | |||
|
r10 | <div class="box"> | |
|
r19 | <!--[form:issue]--> | |
|
r42 | <div class="splitcontentleft"> | |
|
r19 | <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> | |||
<p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}) %></p> | |||
|
r42 | </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"> | |||
|
r19 | <p><%= f.text_field :subject, :size => 80, :required => true %></p> | |
|
r52 | <p><%= f.text_area :description, :cols => 60, :rows => [[10, @issue.description.length / 50].max, 100].min, :required => true %></p> | |
|
r12 | ||
|
r18 | <% for @custom_value in @custom_values %> | |
<p><%= custom_field_tag_with_label @custom_value %></p> | |||
|
r19 | <% end %> | |
|
r10 | ||
|
r19 | <p><%= f.select :fixed_version_id, (@project.versions.collect {|v| [v.name, v.id]}), { :include_blank => true } %> | |
</select></p> | |||
|
r42 | </div> | |
|
r19 | <!--[eoform:issue]--> | |
|
r10 | </div> | |
|
r21 | <%= f.hidden_field :lock_version %> | |
|
r12 | <%= submit_tag l(:button_save) %> | |
|
r36 | <% end %> | |
|
r164 | <% if Setting.text_formatting == 'textile' %> | |
|
r36 | <%= 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(); | |||
} | |||
} | |||
//]]> | |||
|
r42 | </script> | |
|
r148 | <% 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' %> | |||
|
r42 | <% end %> |