2016-06-10 09:17:28 -04:00
|
|
|
- @no_container = true
|
2015-04-30 13:06:18 -04:00
|
|
|
- page_title "Milestones"
|
2016-06-10 09:17:28 -04:00
|
|
|
= render "projects/issues/head"
|
2015-12-02 08:02:12 -05:00
|
|
|
|
2016-06-30 09:01:26 -04:00
|
|
|
%div{ class: container_class }
|
2016-06-10 09:17:28 -04:00
|
|
|
.top-area
|
|
|
|
= render 'shared/milestones_filter'
|
2016-02-03 12:41:55 -05:00
|
|
|
|
2016-06-10 09:17:28 -04:00
|
|
|
.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
|
2015-12-02 08:02:12 -05:00
|
|
|
|
2016-06-10 09:17:28 -04:00
|
|
|
.milestones
|
|
|
|
%ul.content-list
|
|
|
|
= render @milestones
|
2013-05-23 04:44:24 -04:00
|
|
|
|
2016-06-10 09:17:28 -04:00
|
|
|
- if @milestones.blank?
|
|
|
|
%li
|
|
|
|
.nothing-here-block No milestones to show
|
2015-01-06 15:32:04 -05:00
|
|
|
|
2016-06-10 09:17:28 -04:00
|
|
|
= paginate @milestones, theme: "gitlab"
|