debian-mirror-gitlab/app/views/projects/milestones/index.html.haml

23 lines
605 B
Text
Raw Normal View History

- @no_container = true
2015-09-11 14:41:01 +05:30
- page_title "Milestones"
= render "projects/issues/head"
2014-09-02 18:07:02 +05:30
%div{ class: (container_class) }
.top-area
= render 'shared/milestones_filter'
2015-12-23 02:04:40 +05:30
.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-23 02:04:40 +05:30
.milestones
%ul.content-list
= render @milestones
2015-09-25 12:07:36 +05:30
- if @milestones.blank?
%li
.nothing-here-block No milestones to show
2014-09-02 18:07:02 +05:30
= paginate @milestones, theme: "gitlab"