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

_form.html.haml « milestones « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fbaf64a305cdb559eb9420f865fcf5c1a94eb953 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
%h3.page_title= @milestone.new_record? ? "New Milestone" : "Edit Milestone ##{@milestone.id}"
.back_link
  = link_to project_milestones_path(@project) do
    ← 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
  $(function() {
    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()));
  });