gitlabhq/app/views/widgets/_recent_projects.html.haml
2012-02-05 21:26:04 +02:00

11 lines
289 B
Plaintext

- if current_user.projects.count > 0
%div.widget
%h4
Recent Projects:
%ul
- current_user.projects.order("id DESC").limit(5).each do |project|
%li
= link_to project_path(project) do
= project.name
= link_to "More » ", projects_path