gitlabhq/app/views/dashboard/_projects.html.haml

32 lines
915 B
Plaintext
Raw Normal View History

.ui-box
2013-01-04 22:35:31 +01:00
%h5.title
2012-10-02 18:37:53 +02:00
Projects
%small
(#{@projects_count})
2012-10-02 18:37:53 +02:00
- if current_user.can_create_project?
2013-01-30 15:40:43 +01:00
%span.pull-right
2013-01-29 21:29:21 +01:00
= link_to new_project_path, class: "btn btn-tiny info" do
2012-10-02 18:37:53 +02:00
%i.icon-plus
New Project
2012-11-30 04:14:05 +01:00
%ul.well-list
2012-10-02 18:37:53 +02:00
- projects.each do |project|
%li
2012-10-02 18:37:53 +02:00
= link_to project_path(project), class: dom_class(project) do
- if project.namespace
= project.namespace.human_name
\/
%strong.well-title
= truncate(project.name, length: 25)
2012-10-02 18:37:53 +02:00
%span.arrow
→
%span.last_activity
%strong Last activity:
%span= project_last_activity(project)
- if projects.blank?
%li
%h3.nothing_here_message There are no projects here.
- if @projects_count > 20
%li.bottom
2013-01-27 11:56:20 +01:00
%strong= link_to "show all projects", projects_dashboard_path