22 lines
650 B
Plaintext
22 lines
650 B
Plaintext
|
.projects_box
|
||
|
%h5
|
||
|
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
|
||
|
%ul.unstyled
|
||
|
- projects.each do |project|
|
||
|
%li.wll
|
||
|
= link_to project_path(project), class: dom_class(project) do
|
||
|
%strong.project_name= truncate(project.name, length: 25)
|
||
|
%span.arrow
|
||
|
→
|
||
|
%span.last_activity
|
||
|
%strong Last activity:
|
||
|
%span= project_last_activity(project)
|
||
|
.bottom= paginate projects, theme: "gitlab"
|