2012-04-08 23:28:58 +02:00
|
|
|
%h3= @milestone.new_record? ? "New Milestone" : "Edit Milestone ##{@milestone.id}"
|
|
|
|
.back_link
|
2012-06-04 00:37:27 +02:00
|
|
|
= link_to project_milestones_path(@project) do
|
2012-04-08 23:28:58 +02:00
|
|
|
← To milestones
|
|
|
|
|
|
|
|
%hr
|
|
|
|
|
2012-04-10 07:51:08 +02:00
|
|
|
= form_for [@project, @milestone], :html => {:class => "new_milestone form-horizontal"} do |f|
|
2012-04-08 23:28:58 +02:00
|
|
|
-if @milestone.errors.any?
|
|
|
|
.alert-message.block-message.error
|
|
|
|
%ul
|
|
|
|
- @milestone.errors.full_messages.each do |msg|
|
|
|
|
%li= msg
|
|
|
|
.row
|
2012-04-10 07:51:08 +02:00
|
|
|
.span6
|
|
|
|
.control-group
|
|
|
|
= f.label :title, "Title", :class => "control-label"
|
|
|
|
.controls
|
|
|
|
= f.text_field :title, :maxlength => 255, :class => "input-xlarge"
|
|
|
|
%p.help-block Required
|
|
|
|
.control-group
|
|
|
|
= f.label :description, "Description", :class => "control-label"
|
|
|
|
.controls
|
|
|
|
= f.text_area :description, :maxlength => 2000, :class => "input-xlarge", :rows => 10
|
|
|
|
%p.help-block Markdown is enabled.
|
|
|
|
.span6
|
|
|
|
.control-group
|
|
|
|
= f.label :due_date, "Due Date", :class => "control-label"
|
2012-04-08 23:28:58 +02:00
|
|
|
.input= f.hidden_field :due_date
|
2012-04-10 07:51:08 +02:00
|
|
|
.controls
|
2012-04-08 23:28:58 +02:00
|
|
|
.datepicker
|
|
|
|
|
2012-04-10 07:51:08 +02:00
|
|
|
.form-actions
|
2012-04-08 23:28:58 +02:00
|
|
|
- if @milestone.new_record?
|
|
|
|
= f.submit 'Create milestone', :class => "primary btn"
|
|
|
|
-else
|
|
|
|
= f.submit 'Save changes', :class => "primary btn"
|
|
|
|
|
|
|
|
- if request.xhr?
|
2012-06-04 00:37:27 +02:00
|
|
|
= link_to "Cancel", "#back", :onclick => "backToIssues();", :class => "btn"
|
|
|
|
- else
|
2012-04-08 23:28:58 +02:00
|
|
|
- if @milestone.new_record?
|
|
|
|
= link_to "Cancel", project_milestones_path(@project), :class => "btn"
|
2012-06-04 00:37:27 +02:00
|
|
|
- else
|
2012-04-08 23:28:58 +02:00
|
|
|
= link_to "Cancel", project_milestone_path(@project, @milestone), :class => "btn"
|
|
|
|
|
|
|
|
:javascript
|
|
|
|
$(function() {
|
|
|
|
$( ".datepicker" ).datepicker({
|
|
|
|
dateFormat: "yy-mm-dd",
|
|
|
|
onSelect: function(dateText, inst) { $("#milestone_due_date").val(dateText) }
|
|
|
|
});
|
|
|
|
});
|