2015-11-27 02:16:12 -05:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="repository wiki pages">
|
|
|
|
{{template "repo/header" .}}
|
2015-12-07 17:30:52 -05:00
|
|
|
<div class="ui container">
|
|
|
|
<div class="ui header">
|
|
|
|
{{.i18n.Tr "repo.wiki.pages"}}
|
2018-11-28 06:26:14 -05:00
|
|
|
{{if and .CanWriteWiki (not .IsRepositoryMirror)}}
|
2015-12-07 17:30:52 -05: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-13 20:13:59 -05:00
|
|
|
{{end}}
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
|
|
|
<table class="ui table">
|
|
|
|
<tbody>
|
|
|
|
{{range .Pages}}
|
|
|
|
<tr>
|
|
|
|
<td>
|
2016-07-16 00:45:13 -04:00
|
|
|
<i class="octicon octicon-file-text"></i>
|
2017-11-28 04:43:51 -05:00
|
|
|
<a href="{{$.RepoLink}}/wiki/{{.SubURL}}">{{.Name}}</a>
|
2015-12-07 17:30:52 -05:00
|
|
|
</td>
|
2017-12-10 23:37:04 -05:00
|
|
|
{{$timeSince := TimeSinceUnix .UpdatedUnix $.Lang}}
|
2015-12-07 17:30:52 -05: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 17:30:52 -05:00
|
|
|
{{template "base/footer" .}}
|