2015-11-27 07:16:12 +00:00
|
|
|
{{template "base/head" .}}
|
2020-12-01 04:00:14 +00:00
|
|
|
<div class="page-content repository wiki pages">
|
2015-11-27 07:16:12 +00:00
|
|
|
{{template "repo/header" .}}
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="ui container">
|
2020-11-24 19:27:10 +00:00
|
|
|
<h2 class="ui header df ac sb">
|
|
|
|
<div>
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "repo.wiki.pages"}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2020-11-24 19:27:10 +00:00
|
|
|
<div>
|
|
|
|
{{if and .CanWriteWiki (not .IsRepositoryMirror)}}
|
2022-06-27 20:58:46 +00:00
|
|
|
<a class="ui green small button" href="{{.RepoLink}}/wiki?action=_new">{{.locale.Tr "repo.wiki.new_page_button"}}</a>
|
2020-11-24 19:27:10 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</h2>
|
2015-12-07 22:30:52 +00:00
|
|
|
<table class="ui table">
|
|
|
|
<tbody>
|
|
|
|
{{range .Pages}}
|
|
|
|
<tr>
|
|
|
|
<td>
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-file"}}
|
2017-11-28 09:43:51 +00:00
|
|
|
<a href="{{$.RepoLink}}/wiki/{{.SubURL}}">{{.Name}}</a>
|
2015-12-07 22:30:52 +00:00
|
|
|
</td>
|
2022-06-27 20:58:46 +00:00
|
|
|
{{$timeSince := TimeSinceUnix .UpdatedUnix $.locale}}
|
|
|
|
<td class="text right grey">{{$.locale.Tr "repo.wiki.last_updated" $timeSince | Safe}}</td>
|
2015-12-07 22:30:52 +00:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-11-27 07:16:12 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "base/footer" .}}
|