Merge pull request #283 from veprbl/master

Display both author and committer in commits list
This commit is contained in:
Dmitriy Zaporozhets 2012-01-27 11:15:24 -08:00
commit 7d750cbf79
3 changed files with 22 additions and 3 deletions

View file

@ -19,6 +19,15 @@
%strong
= truncate(commit.safe_message, :length => 70)
%span.commit-author
Authored by
 
%strong= commit.author_name
= time_ago_in_words(commit.committed_date)
= time_ago_in_words(commit.authored_date)
ago
- if commit.author_name != commit.committer_name or commit.author_email != commit.committer_email or commit.authored_date != commit.committed_date
%span.commit-committer
Committed by
 
%strong= commit.committer_name
= time_ago_in_words(commit.committed_date)
ago