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

_projects.html.haml « dashboard « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 30fb726801452d5fe9e9b6b24c1451c4f7b7f280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
.projects_box
  %h5.title
    Projects
    %small
      (#{@projects_count})
    - if current_user.can_create_project?
      %span.pull-right
        = link_to new_project_path, class: "btn btn-tiny info" do
          %i.icon-plus
          New Project

  %ul.well-list
    - projects.each do |project|
      %li
        = link_to project_path(project), class: dom_class(project) do
          - if project.namespace
            = project.namespace.human_name
            \/
          %strong.well-title
            = truncate(project.name, length: 25)
          %span.arrow
            →
          %span.last_activity
            %strong Last activity:
            %span= project_last_activity(project)
    - if projects.blank?
      %li
        %h3.nothing_here_message There are no projects here.
    - if @projects_count > 20
      %li.bottom
        %strong= link_to "show all projects", projects_dashboard_path