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

_form_dates.html.haml « milestones « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6dbc460d9bf11de2376ab89cd2c9c19cac782188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.col-md-6
  .form-group.row
    .col-form-label.col-sm-2
      = f.label :start_date, _('Start Date')
    .col-sm-10
      = f.text_field :start_date, class: "datepicker form-control", placeholder: _('Select start date'), autocomplete: 'off'
      %a.inline.float-right.prepend-top-5.js-clear-start-date{ href: "#" }= _('Clear start date')
  .form-group.row
    .col-form-label.col-sm-2
      = f.label :due_date, _('Due Date')
    .col-sm-10
      = f.text_field :due_date, class: "datepicker form-control", placeholder: _('Select due date'), autocomplete: 'off'
      %a.inline.float-right.prepend-top-5.js-clear-due-date{ href: "#" }= _('Clear due date')