summaryrefslogtreecommitdiff
path: root/app/views/public/projects/show.html.haml
blob: c4d8a4f5a5fce0f582348c585185ab1c5ef52e79 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
%h3.page-title
  = @project.name_with_namespace
  .pull-right
    %pre.public-clone git clone #{@project.http_url_to_repo}
  .pull-right
    - if current_user
      = link_to 'Browse project', @project, class: 'btn btn-create append-right-10'


%div
  = link_to public_root_path do
    ← To projects list
  .pull-right
    %span.light= @project.description

%br
.row
  .span9
    = render 'tree', tree: @tree
  .span3
    %h5 Repository:
    %div
      %p
        %span.light Bare size is
        #{@project.repository.size} MB

      %p
        = pluralize(@repository.round_commit_count, 'commit')
      %p
        = pluralize(@repository.branch_names.count, 'branch')
      %p
        = pluralize(@repository.tag_names.count, 'tag')

    - if @recent_tags.present?
      %hr
      %h5 Most Recent Tags:
      %ul.unstyled
        - @recent_tags.each do |tag|
          %li
            %p
              %i.icon-tag
              %strong= tag.name
              %small.light.pull-right
                %i.icon-calendar
                  = time_ago_in_words(tag.commit.committed_date)
                ago