summaryrefslogtreecommitdiff
path: root/app/views/projects/milestones/index.html.haml
blob: aa185126b5686297d76eb1df11973c4e07ba5272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- page_title "Milestones"
= render "header_title"


.project-issuable-filter
  .controls
    - if can?(current_user, :admin_milestone, @project)
      = link_to new_namespace_project_milestone_path(@project.namespace, @project), class: "pull-right btn btn-new", title: "New Milestone" do
        %i.fa.fa-plus
        New Milestone

  = render 'shared/milestones_filter'

.milestones
  %ul.content-list
    = render @milestones

    - if @milestones.blank?
      %li
        .nothing-here-block No milestones to show

  = paginate @milestones, theme: "gitlab"