gitlabhq/app/views/milestones/index.html.haml

26 lines
842 B
Plaintext
Raw Normal View History

2012-04-08 23:28:58 +02:00
= render "issues/head"
.milestones_content
%h3.page_title
2012-04-08 23:28:58 +02:00
Milestones
- if can? current_user, :admin_milestone, @project
= link_to "New Milestone", new_project_milestone_path(@project), :class => "right btn small", :title => "New Milestone"
%br
%div.ui-box
.title
2012-04-10 07:51:08 +02:00
%ul.nav.nav-pills
2012-04-08 23:28:58 +02:00
%li{:class => ("active" if (params[:f] == "0" || !params[:f]))}
= link_to project_milestones_path(@project, :f => 0) do
2012-04-08 23:28:58 +02:00
Active
%li{:class => ("active" if params[:f] == "1")}
= link_to project_milestones_path(@project, :f => 1) do
2012-04-08 23:28:58 +02:00
All
%ul.unstyled
= render @milestones
- if @milestones.present?
%li.bottom= paginate @milestones, :remote => true, :theme => "gitlab"
- else
%li
2012-06-21 16:23:25 +02:00
%h3.nothing_here_message Nothing to show here