summaryrefslogtreecommitdiff
path: root/app/views/repositories/_branch.html.haml
blob: 2728b100ff6e60079eb8ff2dbaafc72a6ac80bb2 (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
- commit = Commit.new(branch.commit)
- commit = CommitDecorator.decorate(commit)
%tr
  %td
    = link_to project_commits_path(@project, branch.name) do
      - if @project.protected_branch? branch.name
        %i.icon-lock
      - else
        %i.icon-unlock
      %strong= truncate(branch.name, length: 60)
      - if branch.name == @project.root_ref
        %span.label default
  %td
    = link_to project_commit_path(@project, commit.id), class: 'commit_short_id' do
      = commit.short_id
    = image_tag gravatar_icon(commit.author_email), class: "avatar s16"
    %span.light
      = gfm escape_once(truncate(commit.title, length: 40))
    %span
      = time_ago_in_words(commit.committed_date)
      ago
  %td
    - if can? current_user, :download_code, @project
      = link_to archive_project_repository_path(@project, ref: branch.name) do
        %i.icon-download
        Download