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

32 lines
866 B
Handlebars
Raw Normal View History

2015-11-27 02:16:12 -05:00
{{template "base/head" .}}
<div class="page-content repository wiki pages">
2015-11-27 02:16:12 -05:00
{{template "repo/header" .}}
2015-12-07 23:30:52 +01:00
<div class="ui container">
2020-11-24 20:27:10 +01:00
<h2 class="ui header df ac sb">
<div>
{{.i18n.Tr "repo.wiki.pages"}}
2015-12-07 23:30:52 +01:00
</div>
2020-11-24 20:27:10 +01:00
<div>
{{if and .CanWriteWiki (not .IsRepositoryMirror)}}
2021-11-16 18:18:25 +00:00
<a class="ui green small button" href="{{.RepoLink}}/wiki?action=_new">{{.i18n.Tr "repo.wiki.new_page_button"}}</a>
2020-11-24 20:27:10 +01:00
{{end}}
</div>
</h2>
2015-12-07 23:30:52 +01:00
<table class="ui table">
<tbody>
{{range .Pages}}
<tr>
<td>
2020-09-11 22:19:00 +02:00
{{svg "octicon-file"}}
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" .}}