(refs #437)Show author at blob, commits and wiki history view

This commit is contained in:
Tomofumi Tanaka
2014-07-30 22:41:04 +09:00
parent d2317d0a97
commit 212f3725ed
3 changed files with 10 additions and 5 deletions

View File

@@ -34,9 +34,9 @@
@commits.map { commit =>
<tr>
<td width="0%"><input type="checkbox" name="commitId" value="@commit.id"></td>
<td>@avatar(commit, 20)&nbsp;@user(commit.committerName, commit.committerEmailAddress)</td>
<td>@avatar(commit, 20)&nbsp;@user(commit.authorName, commit.authorEmailAddress)</td>
<td width="80%">
<span class="muted">@datetime(commit.commitTime):</span>&nbsp;@commit.shortMessage
<span class="muted">@datetime(commit.authorTime):</span>&nbsp;@commit.shortMessage
</td>
</tr>
}