Skip to content
Snippets Groups Projects
index.html.haml 598 B
Newer Older
  • Learn to ignore specific revisions
  • - page_title "Milestones"
    
      .nav-controls
        - if can?(current_user, :admin_milestones, @group)
          = link_to new_group_milestone_path(@group), class: "btn btn-new" do
            New Milestone
    
    
    Annabel Dunstone's avatar
    Annabel Dunstone committed
    .row-content-block
    
      %strong= @group.name
    
        - if @milestones.blank?
    
          %li
            .nothing-here-block No milestones to show
        - else
    
          - @milestones.each do |milestone|
    
            = render 'milestone', milestone: milestone
    
      = paginate @milestones, theme: "gitlab"