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

59 lines
2.5 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 18:13:51 +08:00
<div class="box tabular" >
<p id="watchers_form">
<label style="font-size: 15px;"><%= l(:label_issue_watchers) %></label>
<span id="watchers_inputs" style="font-size: 15px;">
<%= watchers_checkboxes(@issue, @available_watchers) %>
</span>
<span class="search_for_watchers" style="font-size: 15px;">
<%= link_to l(:label_search_for_watchers),
{:controller => 'watchers', :action => 'new', :project_id => @issue.project},
:remote => true,
:method => 'get' %>
</span>
</p>
</div>
</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 16:38:39 +08:00
<a remote="true" href="javascript:void(0)" class="blue_btn fr" onclick="$('#issue-form').submit();">
<%= l(:button_submit) %>
</a>
2015-04-15 18:13:51 +08:00
</p></br></br>
2015-04-15 16:38:39 +08:00
<%#= submit_tag l(:button_submit) %>
<%#= preview_link preview_edit_issue_path(:project_id => @project, :id => @issue), 'issue-form' %>
2013-08-01 10:33:49 +08:00
<% end %>
<div id="preview" class="wiki"></div>