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
1 changed files with 15 additions and 12 deletions

View File

@ -1,18 +1,21 @@
- 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'
.milestones
.panel.panel-default
%ul.well-list
= render @milestones
.gray-content-block
.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
.oneline
Milestone allows you to group issues and set due date for it
- if @milestones.blank?
%li
.nothing-here-block No milestones to show
.milestones
%ul.content-list
= render @milestones
- if @milestones.blank?
%li
.nothing-here-block No milestones to show
= paginate @milestones, theme: "gitlab"