Style project milestones page

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
Dmitriy Zaporozhets 2015-09-07 12:52:53 +02:00
parent 183562bc35
commit dad163b7ee
No known key found for this signature in database
GPG key ID: 161B5D6A44D3D88A

View file

@ -1,18 +1,21 @@
- page_title "Milestones" - page_title "Milestones"
.pull-right
- if can? current_user, :admin_milestone, @project
= link_to new_namespace_project_milestone_path(@project.namespace, @project), class: "pull-right btn btn-new", title: "New Milestone" do
%i.fa.fa-plus
New Milestone
= render 'shared/milestones_filter' = render 'shared/milestones_filter'
.milestones .gray-content-block
.panel.panel-default .pull-right
%ul.well-list - if can? current_user, :admin_milestone, @project
= render @milestones = link_to new_namespace_project_milestone_path(@project.namespace, @project), class: "pull-right btn btn-new", title: "New Milestone" do
%i.fa.fa-plus
New Milestone
.oneline
Milestone allows you to group issues and set due date for it
- if @milestones.blank? .milestones
%li %ul.content-list
.nothing-here-block No milestones to show = render @milestones
- if @milestones.blank?
%li
.nothing-here-block No milestones to show
= paginate @milestones, theme: "gitlab" = paginate @milestones, theme: "gitlab"