gitlab-org--gitlab-foss/app/views/dashboard/_projects.html.haml

31 lines
1.0 KiB
Plaintext
Raw Normal View History

.ui-box
2013-07-13 17:36:21 +00:00
.title.clearfix
= search_field_tag :filter_projects, nil, placeholder: 'Filter by name', class: 'dash-filter'
2012-10-02 16:37:53 +00:00
- if current_user.can_create_project?
2013-01-30 14:40:43 +00:00
%span.pull-right
2013-06-19 10:52:25 +00:00
= link_to new_project_path, class: "btn" do
2012-10-02 16:37:53 +00:00
%i.icon-plus
New Project
2012-11-30 03:14:05 +00:00
%ul.well-list.dash-list
2012-10-02 16:37:53 +00:00
- projects.each do |project|
2013-07-09 17:52:06 +00:00
%li.project-row
2012-10-02 16:37:53 +00:00
= link_to project_path(project), class: dom_class(project) do
2013-07-09 17:52:06 +00:00
%span.namespace-name
- if project.namespace
= project.namespace.human_name
\/
2013-07-13 06:55:46 +00:00
%span.project-name.filter-title
= truncate(project.name, length: 25)
2012-10-02 16:37:53 +00:00
%span.arrow
2013-07-09 17:52:06 +00:00
%i.icon-angle-right
%span.last-activity
%span Last activity:
%span.date= 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 10:56:20 +00:00
%strong= link_to "show all projects", projects_dashboard_path