2015-11-27 08:16:12 +01: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"}}
|
2017-02-14 02:13:59 +01:00
|
|
|
{{if and .IsRepositoryWriter (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 02:13:59 +01:00
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
<table class="ui table">
|
|
|
|
<tbody>
|
|
|
|
{{range .Pages}}
|
|
|
|
<tr>
|
|
|
|
<td>
|
2016-07-16 06:45:13 +02:00
|
|
|
<i class="octicon octicon-file-text"></i>
|
2017-11-28 10:43:51 +01:00
|
|
|
<a href="{{$.RepoLink}}/wiki/{{.SubURL}}">{{.Name}}</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
</td>
|
2017-12-11 05:37:04 +01:00
|
|
|
{{$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 08:16:12 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "base/footer" .}}
|