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: 50e3e8e195c597a15f113e56f61cb616c638e860 (plain)
1
2
3
4
5
6
7
8
9
10
11
.form-group.row
  .col-form-label.col-sm-2
    = f.label :start_date, _('Start Date')
  .col-sm-4
    = f.gitlab_ui_datepicker :start_date, data: { qa_selector: "start_date_field" }, placeholder: _('Select start date'), autocomplete: 'off'
    %a.inline.float-right.gl-mt-2.js-clear-start-date{ href: "#" }= _('Clear start date')
  .col-form-label.col-sm-2
    = f.label :due_date, _('Due Date')
  .col-sm-4
    = f.gitlab_ui_datepicker :due_date, data: { qa_selector: "due_date_field" }, placeholder: _('Select due date'), autocomplete: 'off'
    %a.inline.float-right.gl-mt-2.js-clear-due-date{ href: "#" }= _('Clear due date')