2011-11-25 16:40:12 -05:00
|
|
|
%div.issue-form-holder
|
2011-12-14 01:58:35 -05:00
|
|
|
= form_for [@project, @issue], :remote => request.xhr? do |f|
|
2012-01-27 18:49:14 -05:00
|
|
|
%h3= @issue.new_record? ? "New Issue" : "Edit Issue ##{@issue.id}"
|
|
|
|
%hr
|
2012-01-17 17:46:13 -05:00
|
|
|
-if @issue.errors.any?
|
2012-01-27 18:49:14 -05:00
|
|
|
.alert-message.block-message.error
|
|
|
|
%ul
|
|
|
|
- @issue.errors.full_messages.each do |msg|
|
|
|
|
%li= msg
|
2011-11-25 16:40:12 -05:00
|
|
|
|
2012-03-04 08:35:15 -05:00
|
|
|
.clearfix
|
2012-03-16 23:24:40 -04:00
|
|
|
= f.label :title, "Issue Subject"
|
|
|
|
.input= f.text_field :title, :maxlength => 255
|
|
|
|
|
|
|
|
.clearfix
|
2012-03-17 12:02:48 -04:00
|
|
|
= f.label :description, "Issue Details"
|
2012-03-16 23:24:40 -04:00
|
|
|
.input= f.text_area :description, :maxlength => 2000, :class => "xxlarge"
|
2012-03-17 12:02:48 -04:00
|
|
|
%p.hint Markdown is enabled.
|
2012-03-04 08:35:15 -05:00
|
|
|
|
2012-01-27 18:49:14 -05:00
|
|
|
.clearfix
|
|
|
|
= f.label :assignee_id
|
2012-03-16 22:48:29 -04:00
|
|
|
.input= f.select(:assignee_id, @project.users.all.collect {|p| [ p.name, p.id ] }, { :include_blank => "Assign to user" })
|
2011-12-14 01:58:35 -05:00
|
|
|
|
2012-01-27 18:49:14 -05:00
|
|
|
.clearfix
|
|
|
|
= f.label :critical, "Critical"
|
|
|
|
.input= f.check_box :critical
|
2011-12-14 01:58:35 -05:00
|
|
|
|
2012-01-27 18:49:14 -05:00
|
|
|
- unless @issue.new_record?
|
|
|
|
.clearfix
|
|
|
|
= f.label :closed
|
|
|
|
.input= f.check_box :closed
|
|
|
|
|
2012-01-29 05:04:09 -05:00
|
|
|
.actions
|
2012-03-17 12:02:48 -04:00
|
|
|
- if @issue.new_record?
|
|
|
|
= f.submit 'Submit new issue', :class => "primary btn"
|
|
|
|
-else
|
|
|
|
= f.submit 'Save changes', :class => "primary btn"
|
2012-01-27 18:49:14 -05:00
|
|
|
|
|
|
|
- if request.xhr?
|
|
|
|
= link_to "Cancel", "#back", :onclick => "backToIssues();", :class => "btn"
|
|
|
|
- else
|
|
|
|
- if @issue.new_record?
|
|
|
|
= link_to "Cancel", project_issues_path(@project), :class => "btn"
|
|
|
|
- else
|
|
|
|
= link_to "Cancel", project_issue_path(@project, @issue), :class => "btn"
|