summaryrefslogtreecommitdiff
path: root/app/views/explore/projects/_project.html.haml
blob: ffbddbae4d660af054bb665d546afead94fd8cd5 (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
%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
        %i.fa.fa-star
        = pluralize project.star_count, 'star'

  .project-info
    - 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.fa.fa-exclamation-triangle
        Empty repository