Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-23 20:47:22 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-23 20:47:22 +0400
commit2ed7cbfba4ff3c6a4cf3e72515a0375544998de0 (patch)
treeae6d7530745c80633cd993c99f7820e1452f3e1b /app/views/projects/milestones/_form.html.haml
parent95791316f4037273af7b747ce1851d5f4e46933f (diff)
Move projects controllers/views in Projects module
Diffstat (limited to 'app/views/projects/milestones/_form.html.haml')
-rw-r--r--app/views/projects/milestones/_form.html.haml47
1 files changed, 47 insertions, 0 deletions
diff --git a/app/views/projects/milestones/_form.html.haml b/app/views/projects/milestones/_form.html.haml
new file mode 100644
index 00000000000..50e3e71b2c3
--- /dev/null
+++ b/app/views/projects/milestones/_form.html.haml
@@ -0,0 +1,47 @@
+%h3.page_title= @milestone.new_record? ? "New Milestone" : "Edit Milestone ##{@milestone.id}"
+.back_link
+ = link_to project_milestones_path(@project) do
+ &larr; To milestones
+
+%hr
+
+= form_for [@project, @milestone], html: {class: "new_milestone form-horizontal"} do |f|
+ -if @milestone.errors.any?
+ .alert.alert-error
+ %ul
+ - @milestone.errors.full_messages.each do |msg|
+ %li= msg
+ .row
+ .span6
+ .control-group
+ = f.label :title, "Title", class: "control-label"
+ .controls
+ = f.text_field :title, maxlength: 255, class: "input-xlarge"
+ %p.hint Required
+ .control-group
+ = f.label :description, "Description", class: "control-label"
+ .controls
+ = f.text_area :description, maxlength: 2000, class: "input-xlarge", rows: 10
+ %p.hint Milestones are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.
+ .span6
+ .control-group
+ = f.label :due_date, "Due Date", class: "control-label"
+ .input= f.hidden_field :due_date
+ .controls
+ .datepicker
+
+ .form-actions
+ - if @milestone.new_record?
+ = f.submit 'Create milestone', class: "btn-save btn"
+ = link_to "Cancel", project_milestones_path(@project), class: "btn btn-cancel"
+ -else
+ = f.submit 'Save changes', class: "btn-save btn"
+ = link_to "Cancel", project_milestone_path(@project, @milestone), class: "btn btn-cancel"
+
+
+:javascript
+ disableButtonIfEmptyField("#milestone_title", ".btn-save");
+ $( ".datepicker" ).datepicker({
+ dateFormat: "yy-mm-dd",
+ onSelect: function(dateText, inst) { $("#milestone_due_date").val(dateText) }
+ }).datepicker("setDate", $.datepicker.parseDate('yy-mm-dd', $('#milestone_due_date').val()));