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

_project.html.haml « projects « explore « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9498416c8a11b4e7a550f6e381ae43e2eb6447f (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
%li
  %h4.project-title
    .project-access-icon
      = visibility_level_icon(project.visibility_level)
    = link_to project.name_with_namespace, project

    - if current_page?(starred_explore_projects_path)
      %strong.pull-right
        = pluralize project.star_count, 'star'

  - if project.description.present?
    %p.project-description.str-truncated
      = project.description

  .repo-info
    - unless project.empty_repo?
      = link_to pluralize(project.repository.round_commit_count, 'commit'), project_commits_path(project, project.default_branch)
      ·
      = link_to pluralize(project.repository.branch_names.count, 'branch'), project_branches_path(project)
      ·
      = link_to pluralize(project.repository.tag_names.count, 'tag'), project_tags_path(project)
    - else
      %i.icon-warning-sign
      Empty repository