mirror of
https://github.com/gitbucket/gitbucket.git
synced 2026-01-08 16:42:18 +01:00
Fix the tag page.
This commit is contained in:
@@ -8,15 +8,15 @@
|
||||
<table class="table table-bordered">
|
||||
<tr>
|
||||
<th width="40%">Tag</th>
|
||||
<th width="20%">Commit</th>
|
||||
<th width="20%">Date</th>
|
||||
<th width="20%">Commit</th>
|
||||
<th width="20%">Download</th>
|
||||
</tr>
|
||||
@repository.tags.map { tag =>
|
||||
<tr>
|
||||
<td>@tag.name</td>
|
||||
<td><a href="@path/@repository.owner/@repository.name/tree/@tag.name">@tag.name</a></td>
|
||||
<td>@helpers.datetime(tag.time)</td>
|
||||
<td><a href="@path/@repository.owner/@repository.name/tree/@tag.id">@tag.id.substring(0, 10)</a></td>
|
||||
<td><a href="@path/@repository.owner/@repository.name/commit/@tag.id">@tag.id.substring(0, 10)</a></td>
|
||||
<td><a href="@path/@repository.owner/@repository.name/archive/@(tag.name).zip">ZIP</a></td>
|
||||
</tr>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user