BigW Consortium Gitlab

_branch.html.haml 765 Bytes
Newer Older
1 2 3 4 5 6 7
%tr
  %td
    = link_to project_commits_path(@project, :ref => branch.name) do
      %strong= branch.name
      - if branch.name == @project.root_ref
        %span.label default
  %td
8
    = link_to project_commit_path(@project, :id => branch.commit.id) do
9 10 11 12 13 14 15 16 17 18 19 20
      %code= branch.commit.id.to_s[0..10]

    = image_tag gravatar_icon(Commit.new(branch.commit).author_email), :class => "", :width => 16
    = truncate(Commit.new(branch.commit).safe_message, :length => 40)
  %td
    %span.update-author.right
      = time_ago_in_words(branch.commit.committed_date)
      ago
  %td
    - if can? current_user, :download_code, @project
      = link_to "Download", archive_project_repository_path(@project, :ref => branch.name), :class => "visible_link download_repo_link"