gitlabhq/app/views/repositories/_branch.html.haml

22 lines
797 B
Plaintext
Raw Normal View History

2012-07-22 13:08:24 +02:00
- commit = Commit.new(branch.commit)
- commit = CommitDecorator.decorate(commit)
%tr
%td
= link_to project_commits_path(@project, :ref => branch.name) do
2012-08-08 16:08:43 +02:00
%strong= truncate(branch.name, :length => 60)
- if branch.name == @project.root_ref
%span.label default
%td
2012-07-22 13:08:24 +02:00
= link_to project_commit_path(@project, :id => commit.id) do
%code= commit.short_id
2012-07-22 13:08:24 +02:00
= image_tag gravatar_icon(commit.author_email), :class => "", :width => 16
2012-08-02 02:31:45 +02:00
= gfm truncate(commit.title, :length => 40)
%span.update-author.right
2012-07-22 13:08:24 +02:00
= time_ago_in_words(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"