mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-12 08:25:50 +01:00
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
@(commits: List[app.CommitInfo], repository: app.RepositoryInfo)(implicit context: app.Context)
|
|
@import view.helpers
|
|
@import context._
|
|
@main("History - " + repository.owner + "/" + repository.name){
|
|
@header("wiki", repository)
|
|
@wikitab("history", repository)
|
|
<ul class="nav nav-tabs">
|
|
<li>
|
|
<h1 class="wiki-title"><span class="description">Pages</span></h1>
|
|
</li>
|
|
<li class="pull-right">
|
|
<div class="btn-group">
|
|
<a class="btn" href="@path/@repository.owner/@repository.name/wiki/_new">New Page</a>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<input type="button" value="Compare Revisions" class="btn"/>
|
|
<table class="table table-bordered">
|
|
@commits.map { commit =>
|
|
<tr>
|
|
<td width="0%"><input type="checkbox"></td>
|
|
<td><a href="@path/@commit.committer">@commit.committer</a></td>
|
|
<td width="80%">
|
|
<span class="description">@helpers.datetime(commit.time):</span>
|
|
@commit.message
|
|
</td>
|
|
</tr>
|
|
|
|
}
|
|
</table>
|
|
<input type="button" value="Compare Revisions" class="btn"/>
|
|
<input type="button" value="Back to Top" class="btn"/>
|
|
} |