socialforge/app/views/issues/_edit.html.erb

43 lines
1.9 KiB
Plaintext
Raw Normal View History

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 %>
2015-04-15 16:38:39 +08:00
<!--编辑的整个属性-->
<% if @edit_allowed || !@allowed_statuses.empty? %>
2013-08-01 10:33:49 +08:00
<div id="all_attributes">
2015-04-15 16:38:39 +08:00
<%= render :partial => 'form', :locals => {:f => f} %>
</div>
<% end %><!--end-->
2013-08-01 10:33:49 +08:00
2015-04-15 16:38:39 +08:00
<!--<fieldset><legend><%#= l(:field_notes) %></legend>-->
<!--回复框-->
<% if @journals.present? %>
<div id="history">
<%= render :partial => 'history', :locals => { :issue => @issue, :journals => @journals } %>
</div>
2013-08-01 10:33:49 +08:00
<% end %>
2015-04-15 16:38:39 +08:00
<%= f.text_area :notes, :style =>"width:99%;", :rows => "5", :no_label => true %>
<!--<%# 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 %>-->
2013-08-01 10:33:49 +08:00
<%= call_hook(:view_issues_edit_notes_bottom, { :issue => @issue, :notes => @notes, :form => f }) %>
2015-04-15 16:38:39 +08:00
<!--</fieldset>-->
2013-08-01 10:33:49 +08:00
2015-04-15 16:38:39 +08:00
<!--<fieldset><legend><%#= l(:label_attachment_plural) %></legend>-->
<p style="padding-top: 5px;"><%= render :partial => 'attachments/form', :locals => {:container => @issue} %>
<!--</fieldset>-->
2015-04-15 20:05:21 +08:00
<div class="cl"></div>
2013-08-01 10:33:49 +08:00
<%= f.hidden_field :lock_version %>
<%= hidden_field_tag 'last_journal_id', params[:last_journal_id] || @issue.last_journal_id %>
<%= hidden_field_tag 'reference_user_id', params[:reference_user_id]%>
2015-04-15 20:05:21 +08:00
<a remote="true" href="javascript:void(0)" class="blue_btn fl ml80" onclick="$('#issue-form').submit();">
2015-04-15 16:38:39 +08:00
<%= l(:button_submit) %>
</a>
<%#= submit_tag l(:button_submit) %>
2015-04-15 20:05:21 +08:00
<%= preview_link preview_edit_issue_path(:project_id => @project, :id => @issue), 'issue-form' ,'preview',{:class => "blue_btn fl ml10"}%>
2013-08-01 10:33:49 +08:00
<% end %>
<div id="preview" class="wiki"></div>