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

index.html.haml « milestones « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3eab8d6d7509d19cb1bba0bda2959999fc5974c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.pull-right
  - 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
  .panel.panel-default
    %ul.well-list
      = render @milestones

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

  = paginate @milestones, theme: "gitlab"