Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_projects.html.haml « teams « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e72125919b140bac19ba376a6c86d1a53ad4c8ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.projects_box
  %h5.title
    Projects
    %small
      (#{projects.count})
    - if can? current_user, :manage_user_team, @team
      %span.right
        = link_to new_team_project_path(@team), class: "btn btn-tiny info" do
          %i.icon-plus
          Assign Project
  %ul.well-list
    - if projects.blank?
      %p.nothing_here_message This team has no projects yet
    - projects.each do |project|
      %li
        = link_to project_path(project), class: dom_class(project) do
          %strong.well-title= truncate(project.name, length: 25)
          %span.arrow
            →
          %span.last_activity
            %strong Last activity:
            %span= project_last_activity(project)