Files
Atay-Makhzan/templates/repo/wiki/pages.tmpl
T

30 lines
836 B
Cheetah
Raw Normal View History

2015-11-27 02:16:12 -05:00
{{template "base/head" .}}
<div class="repository wiki pages">
{{template "repo/header" .}}
2015-12-07 23:30:52 +01:00
<div class="ui container">
<div class="ui header">
{{.i18n.Tr "repo.wiki.pages"}}
{{if and .CanWriteWiki (not .IsRepositoryMirror)}}
2015-12-07 23:30:52 +01:00
<div class="ui right">
<a class="ui green small button" href="{{.RepoLink}}/wiki/_new">{{.i18n.Tr "repo.wiki.new_page_button"}}</a>
</div>
2017-02-14 08:13:59 +07:00
{{end}}
2015-12-07 23:30:52 +01:00
</div>
<table class="ui table">
<tbody>
{{range .Pages}}
<tr>
<td>
2020-02-11 11:02:41 -06:00
{{svg "octicon-file" 16}}
2017-11-28 01:43:51 -08:00
<a href="{{$.RepoLink}}/wiki/{{.SubURL}}">{{.Name}}</a>
2015-12-07 23:30:52 +01:00
</td>
{{$timeSince := TimeSinceUnix .UpdatedUnix $.Lang}}
2015-12-07 23:30:52 +01:00
<td class="text right grey">{{$.i18n.Tr "repo.wiki.last_updated" $timeSince | Safe}}</td>
</tr>
{{end}}
</tbody>
</table>
2015-11-27 02:16:12 -05:00
</div>
</div>
2015-12-07 23:30:52 +01:00
{{template "base/footer" .}}