gitlab-org--gitlab-foss/app/views/projects/issues/_form.html.haml

97 lines
3.5 KiB
Plaintext
Raw Normal View History

%div.issue-form-holder
%h3.page-title= @issue.new_record? ? "New Issue" : "Edit Issue ##{@issue.iid}"
%hr
2014-04-08 15:12:57 +00:00
- if @repository.exists? && !@repository.empty? && @repository.contribution_guide && !@issue.persisted?
- contribution_guide_url = project_blob_path(@project, tree_join(@repository.root_ref, @repository.contribution_guide.name))
.alert.alert-info.col-sm-10.col-sm-offset-2
="Please review the <strong>#{link_to "guidelines for contribution", contribution_guide_url}</strong> to this repository.".html_safe
= form_for [@project, @issue], html: { class: 'form-horizontal issue-form' } do |f|
2012-01-17 22:46:13 +00:00
-if @issue.errors.any?
.alert.alert-danger
2012-12-19 03:14:05 +00:00
- @issue.errors.full_messages.each do |msg|
%span= msg
%br
.form-group
= f.label :title, class: 'control-label' do
%strong= 'Title *'
.col-sm-10
= f.text_field :title, maxlength: 255, class: "form-control js-gfm-input", autofocus: true, required: true
.form-group
= f.label :description, 'Description', class: 'control-label'
.col-sm-10
= f.text_area :description, class: "form-control js-gfm-input", rows: 14
%p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.
%hr
.form-group
.issue-assignee
= f.label :assignee_id, class: 'control-label' do
%i.icon-user
Assign to
.col-sm-10
= project_users_select_tag('issue[assignee_id]', placeholder: 'Select a user', class: 'custom-form-control', selected: @issue.assignee_id)
&nbsp;
= link_to 'Assign to me', '#', class: 'btn btn-small assign-to-me-link'
.form-group
.issue-milestone
= f.label :milestone_id, class: 'control-label' do
%i.icon-time
Milestone
.col-sm-10= f.select(:milestone_id, milestone_options(@issue), { include_blank: "Select milestone" }, {class: 'select2'})
.form-group
= f.label :label_list, class: 'control-label' do
%i.icon-tag
Labels
.col-sm-10
= f.text_field :label_list, maxlength: 2000, class: "form-control"
%p.hint Separate labels with commas.
2013-08-07 20:35:24 +00:00
.form-actions
- if @issue.new_record?
2013-01-29 20:18:19 +00:00
= f.submit 'Submit new issue', class: "btn btn-create"
-else
2013-01-29 20:18:19 +00:00
= f.submit 'Save changes', class: "btn-save btn"
2012-01-27 23:49:14 +00:00
2012-12-19 03:14:05 +00:00
- cancel_path = @issue.new_record? ? project_issues_path(@project) : project_issue_path(@project, @issue)
2013-01-29 20:18:19 +00:00
= link_to "Cancel", cancel_path, class: 'btn btn-cancel'
2012-12-18 03:14:05 +00:00
:javascript
2013-05-29 10:16:30 +00:00
$("#issue_label_list")
.bind( "keydown", function( event ) {
if ( event.keyCode === $.ui.keyCode.TAB &&
$( this ).data( "autocomplete" ).menu.active ) {
event.preventDefault();
}
})
.bind("click", function(event) {
$(this).autocomplete("search", "");
2013-06-09 16:36:08 +00:00
})
2013-05-29 10:16:30 +00:00
.autocomplete({
minLength: 0,
source: function( request, response ) {
response( $.ui.autocomplete.filter(
#{raw labels_autocomplete_source}, extractLast( request.term ) ) );
},
focus: function() {
return false;
},
select: function(event, ui) {
var terms = split( this.value );
terms.pop();
terms.push( ui.item.value );
terms.push( "" );
this.value = terms.join( ", " );
return false;
}
});
2012-12-18 03:14:05 +00:00
2013-05-29 10:16:30 +00:00
$('.assign-to-me-link').on('click', function(e){
$('#issue_assignee_id').val("#{current_user.id}").trigger("change");
2013-05-29 10:16:30 +00:00
e.preventDefault();
});