gitlab-org--gitlab-foss/app/views/projects/milestones/index.html.haml

23 lines
603 B
Text
Raw Normal View History

- @no_container = true
2015-04-30 13:06:18 -04:00
- page_title "Milestones"
= render "projects/issues/head"
2016-06-30 09:01:26 -04:00
%div{ class: container_class }
.top-area
= render 'shared/milestones_filter'
.nav-controls
- if can?(current_user, :admin_milestone, @project)
= link_to new_namespace_project_milestone_path(@project.namespace, @project), class: "btn btn-new", title: "New Milestone" do
New Milestone
.milestones
%ul.content-list
= render @milestones
2013-05-23 04:44:24 -04:00
- if @milestones.blank?
%li
.nothing-here-block No milestones to show
2015-01-06 15:32:04 -05:00
= paginate @milestones, theme: "gitlab"