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

107 lines
5.5 KiB
Plaintext
Raw Normal View History

2015-04-15 16:34:34 +08:00
<%= labelled_fields_for :issue, @issue do |f| %>
2015-12-15 18:43:58 +08:00
<%#= call_hook(:view_issues_form_details_top, {:issue => @issue, :form => f}) %>
2015-04-15 16:34:34 +08:00
<div class="newpro_box">
<ul>
<li>
<% if @issue.safe_attribute? 'tracker_id' %>
<label class="label"><span class="c_red f12">*</span>&nbsp;类型&nbsp;&nbsp;:&nbsp;</label>
<%= f.select :tracker_id, @issue.project.trackers.collect { |t| [t.name, t.id] },
{:required => true, :no_label => true},
2015-12-21 11:19:34 +08:00
#:onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')",
:class => "w90" %>
2015-04-15 16:34:34 +08:00
<% end %>
</li>
<li>
<% if @issue.safe_attribute? 'is_private' %>
<%= f.check_box :is_private, :no_label => true, :class => "ml30" %>
<label class="fl ml5 mt3" for="issue_is_private" id="issue_is_private_label"><%= l(:field_is_private) %></label>
2015-04-27 17:49:05 +08:00
<label class="fl ml5 mt3" for="issue_is_private" id="issue_is_private_tips"><%= l(:field_is_private_tips)%></label>
2015-04-15 16:34:34 +08:00
<% end %>
</li>
<div class="cl"></div>
<!--<li>-->
<!--<%# if @issue.safe_attribute? 'project_id' %>-->
<%#= f.select :project_id, project_tree_options_for_select(@issue.allowed_target_projects, :selected => @issue.project), {:required => true},
:onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')" %>
2015-04-15 16:34:34 +08:00
<!--<%# end %>-->
<!--</li>-->
<li>
<% if @issue.safe_attribute? 'subject' %>
<label class="label"><span class="c_red f12">*</span>&nbsp;主题&nbsp;&nbsp;:&nbsp;</label>
2015-12-16 10:19:48 +08:00
<%= f.text_field :subject, :class => "w606", :maxlength => 255, :style => "font-size:small", :no_label => true %>
2015-04-15 16:34:34 +08:00
<!--Added by young-->
<%= javascript_tag do %>
observeAutocompleteField('issue_subject',
2015-04-24 15:20:37 +08:00
'<%= escape_javascript auto_complete_issues_path(:project_id => @project, :scope => (Setting.cross_project_issue_relations? ? 'all' : nil)) %>',
2015-04-15 16:34:34 +08:00
{ select: function(event, ui) {
$('input#issue_subject').val(ui.item.value);
}
});
<% end %>
2013-08-19 19:55:37 +08:00
2015-04-15 16:34:34 +08:00
<% end %>
</li>
<div class="cl"></div>
2015-04-09 18:37:10 +08:00
2015-04-15 16:34:34 +08:00
<li>
<% if @issue.safe_attribute? 'description' %>
<label class="label">&nbsp;描述&nbsp;&nbsp;:&nbsp;</label>
2015-04-15 16:34:34 +08:00
<%= f.label_for_field :description, :required => @issue.required_attribute?('description'), :no_label => true, :class => "label" %>
2015-05-27 11:08:05 +08:00
<%#= link_to_function image_tag('edit.png'), '$(this).hide(); $("#issue_description_and_toolbar").show()' unless @issue.new_record? %>
<%#= content_tag 'span', :id => "issue_description_and_toolbar" do %>
2015-12-28 14:52:36 +08:00
<%= f.kindeditor :description,:editor_id => "issue_desc_editor", :width=>'85%', :height =>170, :resizeType => 0, :no_label => true,at_id: @project.id, at_type: @project.class.to_s %>
2015-05-27 11:08:05 +08:00
<%# end %>
<%#= wikitoolbar_for 'issue_description' %>
2015-04-15 16:34:34 +08:00
<% end %>
</li>
<div class="cl"></div>
</ul>
</div>
2015-04-14 19:56:03 +08:00
<li>
<%# if @copy_from && @copy_from.attachments.any? %>
<!--<p>-->
2015-04-14 19:56:03 +08:00
<!-- 去除附件复制功能 -->
<!-- <label for="copy_attachments"><#%= l(:label_copy_attachments) %></label>
<#%= check_box_tag 'copy_attachments', '1', @copy_attachments %> -->
<!--</p>-->
<%# end %>
2015-04-14 19:56:03 +08:00
<% if @copy_from && !@copy_from.leaf? %>
<p>
<label for="copy_subtasks"><%= l(:label_copy_subtasks) %></label>
<%= check_box_tag 'copy_subtasks', '1', @copy_subtasks %>
</p>
<% end %>
</li>
<div class="cl"></div>
<li>
2015-04-15 16:34:34 +08:00
<br>
<label class="label"><%= l(:label_attachment_plural) %></label>
2015-04-14 19:56:03 +08:00
<%= render :partial => 'attachments/form', :locals => {:container => @issue} %>
2015-04-15 16:34:34 +08:00
</li>
2015-04-14 19:56:03 +08:00
<div class="cl"></div>
2015-04-15 16:34:34 +08:00
<div id="attributes">
<%= render :partial => 'issues/attributes' %>
</div>
2015-04-15 20:05:21 +08:00
<div class="cl"></div>
<!--<div class="newpro_box02 ">-->
<!--<label class="label"> <%#= l(:label_issue_watchers) %></label>-->
<!--<input id="" name="" size="22" class="fl mb10 h26" type="text" placeholder="搜索添加跟踪者">-->
<!--<span class="search_for_watchers">-->
<%#= link_to "",
# {:controller => 'watchers', :action => 'new', :project_id => @issue.project},
# :remote => true,
# :method => 'get',
2015-04-15 20:05:21 +08:00
:class => "pic_sch mt5 ml5" %>
<!--</span>-->
<%#= javascript_tag "observeSearchfield('user_search', 'users_for_watcher', '#{ escape_javascript watchers_autocomplete_for_user_path(:user => @available_watchers, :format => 'js', :flag => 'ture') }')" %>
<!--<div class="cl"></div>-->
<!--<span id="watchers_inputs">-->
<!--<%#= watchers_checkboxes(@issue, @available_watchers) %>-->
<!--</span>-->
<!--<div class="cl"></div>-->
<!--</div>-->
2015-04-15 16:34:34 +08:00
<%= call_hook(:view_issues_form_details_bottom, {:issue => @issue, :form => f}) %>
2015-04-24 15:20:37 +08:00
<% end %>
<a href="javascript:void(0);" onclick="issue_desc_editor.sync();$('#issue-form').submit();" class="blue_btn fl ml80"> 确定</a>
2015-12-18 09:20:51 +08:00
<a href="javascript:void(0);" onclick="issueDetailShow();" class="grey_btn fl mr50" > 取消 </a>