2013-08-01 10:33:49 +08:00
|
|
|
<%= labelled_form_for @issue, :html => {:id => 'issue-form', :multipart => true} do |f| %>
|
|
|
|
<%= error_messages_for 'issue', 'time_entry' %>
|
|
|
|
<%= render :partial => 'conflict' if @conflict %>
|
|
|
|
<div class="box">
|
2014-04-24 10:16:18 +08:00
|
|
|
<% if @edit_allowed || !@allowed_statuses.empty? %>
|
2013-08-01 10:33:49 +08:00
|
|
|
<fieldset class="tabular"><legend><%= l(:label_change_properties) %></legend>
|
|
|
|
<div id="all_attributes">
|
|
|
|
<%= render :partial => 'form', :locals => {:f => f} %>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<fieldset><legend><%= l(:field_notes) %></legend>
|
|
|
|
<%= f.text_area :notes, :cols => 60, :rows => 10, :class => 'wiki-edit', :no_label => true %>
|
|
|
|
<%= wikitoolbar_for 'issue_notes' %>
|
|
|
|
|
|
|
|
<% if @issue.safe_attribute? 'private_notes' %>
|
|
|
|
<label for="issue_private_notes"><%= f.check_box :private_notes, :no_label => true %> <%= l(:field_private_notes) %></label>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= call_hook(:view_issues_edit_notes_bottom, { :issue => @issue, :notes => @notes, :form => f }) %>
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<fieldset><legend><%= l(:label_attachment_plural) %></legend>
|
|
|
|
<p><%= render :partial => 'attachments/form', :locals => {:container => @issue} %></p>
|
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= f.hidden_field :lock_version %>
|
|
|
|
<%= hidden_field_tag 'last_journal_id', params[:last_journal_id] || @issue.last_journal_id %>
|
2013-08-11 10:36:55 +08:00
|
|
|
<%= hidden_field_tag 'reference_user_id', params[:reference_user_id]%>
|
2013-08-01 10:33:49 +08:00
|
|
|
<%= submit_tag l(:button_submit) %>
|
|
|
|
<%= preview_link preview_edit_issue_path(:project_id => @project, :id => @issue), 'issue-form' %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<div id="preview" class="wiki"></div>
|