gitlabhq/app/views/issues/_form.html.haml

51 lines
1.9 KiB
Plaintext
Raw Normal View History

%div.issue-form-holder
%h3= @issue.new_record? ? "New Issue" : "Edit Issue ##{@issue.id}"
2011-12-14 07:58:35 +01:00
= form_for [@project, @issue], :remote => request.xhr? do |f|
2012-01-17 23:46:13 +01:00
-if @issue.errors.any?
2012-01-28 00:49:14 +01:00
.alert-message.block-message.error
%ul
- @issue.errors.full_messages.each do |msg|
%li= msg
.issue_form_box
.issue_title
.clearfix
= f.label :title, "Issue Subject *"
.input
= f.text_field :title, :maxlength => 255, :class => "xxlarge"
.issue_middle_block
.issue_assignee
2012-06-26 20:47:25 +02:00
= f.label :assignee_id, "Assign to"
.input= f.select(:assignee_id, @project.users.all.collect {|p| [ p.name, p.id ] }, { :include_blank => "Assign to user" })
.issue_milestone
= f.label :milestone_id
.input= f.select(:milestone_id, @project.milestones.active.all.collect {|p| [ p.title, p.id ] }, { :include_blank => "Select milestone" })
.issue_description
.clearfix
= f.label :critical, "Critical"
.input= f.check_box :critical
- unless @issue.new_record?
.clearfix
= f.label :closed
.input= f.check_box :closed
.clearfix
= f.label :description, "Issue Details"
.input
= f.text_area :description, :maxlength => 2000, :class => "xxlarge", :rows => 14
%p.hint Markdown is enabled.
2012-01-29 11:04:09 +01:00
.actions
- if @issue.new_record?
= f.submit 'Submit new issue', :class => "primary btn"
-else
= f.submit 'Save changes', :class => "primary btn"
2012-01-28 00:49:14 +01:00
- if request.xhr?
= link_to "Cancel", "#back", :onclick => "backToIssues();", :class => "btn"
- else
2012-01-28 00:49:14 +01:00
- if @issue.new_record?
= link_to "Cancel", project_issues_path(@project), :class => "btn"
- else
2012-01-28 00:49:14 +01:00
= link_to "Cancel", project_issue_path(@project, @issue), :class => "btn"