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

23 lines
715 B
Plaintext
Raw Normal View History

.ui-box
2013-01-19 18:32:09 +01:00
%h5.title
Projects
%small
(#{projects.count})
- if can? current_user, :manage_user_team, @team
2013-01-30 15:40:43 +01:00
%span.pull-right
2013-03-14 11:38:43 +01:00
= link_to edit_team_path(@team), class: "btn btn-tiny info" do
2013-01-19 18:32:09 +01:00
%i.icon-plus
Assign Project
2013-01-19 18:32:09 +01:00
%ul.well-list
- if projects.blank?
2013-01-24 09:16:03 +01:00
%p.nothing_here_message This team has no projects yet
2013-01-19 18:32:09 +01:00
- projects.each do |project|
%li
= link_to project_path(project), class: dom_class(project) do
%strong.well-title= truncate(project.name_with_namespace, length: 40)
2013-01-19 18:32:09 +01:00
%span.arrow
→
%span.last_activity
%strong Last activity:
%span= project_last_activity(project)