mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-20 10:06:04 +10:00
22 lines
551 B
Plaintext
22 lines
551 B
Plaintext
= render "projects/issues_nav"
|
|
.milestones_content
|
|
%h3.page-title
|
|
Milestones
|
|
- if can? current_user, :admin_milestone, @project
|
|
= link_to new_project_milestone_path(@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"
|