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

37 lines
1.1 KiB
Plaintext
Raw Normal View History

2012-10-02 18:37:53 +02:00
.projects_box
2013-01-04 22:35:31 +01:00
%h5.title
2012-10-02 18:37:53 +02:00
Projects
%small
(#{projects.total_count})
- if current_user.can_create_project?
%span.right
= link_to new_project_path, class: "btn very_small info" do
%i.icon-plus
New Project
2012-11-30 04:14:05 +01:00
%ul.nav.nav-projects-tabs
= nav_tab :scope, nil do
= link_to "All", dashboard_path
= nav_tab :scope, 'personal' do
= link_to "Personal", dashboard_path(scope: 'personal')
= nav_tab :scope, 'joined' do
= link_to "Joined", dashboard_path(scope: 'joined')
%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.
2012-10-02 18:37:53 +02:00
.bottom= paginate projects, theme: "gitlab"