2012-08-17 08:26:59 +02:00
|
|
|
%h3.page_title= @milestone.new_record? ? "New Milestone" : "Edit Milestone ##{@milestone.id}"
|
2012-04-08 23:28:58 +02:00
|
|
|
.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-08-11 00:07:50 +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?
|
2013-01-30 15:53:18 +01:00
|
|
|
.alert.alert-error
|
2012-04-08 23:28:58 +02:00
|
|
|
%ul
|
|
|
|
- @milestone.errors.full_messages.each do |msg|
|
|
|
|
%li= msg
|
|
|
|
.row
|
2012-04-10 07:51:08 +02:00
|
|
|
.span6
|
|
|
|
.control-group
|
2012-08-11 00:07:50 +02:00
|
|
|
= f.label :title, "Title", class: "control-label"
|
2012-04-10 07:51:08 +02:00
|
|
|
.controls
|
2012-08-11 00:07:50 +02:00
|
|
|
= f.text_field :title, maxlength: 255, class: "input-xlarge"
|
2012-08-17 08:26:59 +02:00
|
|
|
%p.hint Required
|
2012-04-10 07:51:08 +02:00
|
|
|
.control-group
|
2012-08-11 00:07:50 +02:00
|
|
|
= f.label :description, "Description", class: "control-label"
|
2012-04-10 07:51:08 +02:00
|
|
|
.controls
|
2012-08-11 00:07:50 +02:00
|
|
|
= f.text_area :description, maxlength: 2000, class: "input-xlarge", rows: 10
|
2012-09-06 09:50:47 +02:00
|
|
|
%p.hint Milestones are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.
|
2012-04-10 07:51:08 +02:00
|
|
|
.span6
|
|
|
|
.control-group
|
2012-08-11 00:07:50 +02:00
|
|
|
= 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?
|
2013-01-29 21:18:19 +01:00
|
|
|
= f.submit 'Create milestone', class: "btn-save btn"
|
|
|
|
= link_to "Cancel", project_milestones_path(@project), class: "btn btn-cancel"
|
2012-04-08 23:28:58 +02:00
|
|
|
-else
|
2013-01-29 21:18:19 +01:00
|
|
|
= f.submit 'Save changes', class: "btn-save btn"
|
|
|
|
= link_to "Cancel", project_milestone_path(@project, @milestone), class: "btn btn-cancel"
|
2012-04-08 23:28:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
:javascript
|
|
|
|
$(function() {
|
2013-01-29 21:18:19 +01:00
|
|
|
disableButtonIfEmptyField("#milestone_title", ".btn-save");
|
2012-04-08 23:28:58 +02:00
|
|
|
$( ".datepicker" ).datepicker({
|
|
|
|
dateFormat: "yy-mm-dd",
|
|
|
|
onSelect: function(dateText, inst) { $("#milestone_due_date").val(dateText) }
|
2012-12-01 07:14:05 +01:00
|
|
|
}).datepicker("setDate", $.datepicker.parseDate('yy-mm-dd', $('#milestone_due_date').val()));
|
2012-04-08 23:28:58 +02:00
|
|
|
});
|