2015-11-27 02:16:12 -05:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 17:56:10 -05:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository wiki pages">
|
2015-11-27 02:16:12 -05:00
|
|
|
{{template "repo/header" .}}
|
2015-12-07 17:30:52 -05:00
|
|
|
<div class="ui container">
|
2023-02-13 12:59:59 -05:00
|
|
|
<h2 class="ui header gt-df gt-ac gt-sb">
|
2023-04-19 13:50:10 -04:00
|
|
|
<span>{{.locale.Tr "repo.wiki.pages"}}</span>
|
|
|
|
<span>
|
2023-05-04 03:27:15 -04:00
|
|
|
{{if and .CanWriteWiki (not .Repository.IsMirror)}}
|
2022-06-27 16:58:46 -04:00
|
|
|
<a class="ui green small button" href="{{.RepoLink}}/wiki?action=_new">{{.locale.Tr "repo.wiki.new_page_button"}}</a>
|
2020-11-24 14:27:10 -05:00
|
|
|
{{end}}
|
2023-04-19 13:50:10 -04:00
|
|
|
</span>
|
2020-11-24 14:27:10 -05:00
|
|
|
</h2>
|
2023-04-19 13:50:10 -04:00
|
|
|
<table class="ui table wiki-pages-list">
|
2015-12-07 17:30:52 -05:00
|
|
|
<tbody>
|
|
|
|
{{range .Pages}}
|
|
|
|
<tr>
|
|
|
|
<td>
|
2020-09-11 16:19:00 -04:00
|
|
|
{{svg "octicon-file"}}
|
2017-11-28 04:43:51 -05:00
|
|
|
<a href="{{$.RepoLink}}/wiki/{{.SubURL}}">{{.Name}}</a>
|
2023-04-19 13:50:10 -04:00
|
|
|
<a class="wiki-git-entry" href="{{$.RepoLink}}/wiki/{{.GitEntryName | PathEscape}}" data-tooltip-content="{{$.locale.Tr "repo.wiki.original_git_entry_tooltip"}}">{{svg "octicon-chevron-right"}}</a>
|
2015-12-07 17:30:52 -05:00
|
|
|
</td>
|
2022-06-27 16:58:46 -04:00
|
|
|
{{$timeSince := TimeSinceUnix .UpdatedUnix $.locale}}
|
2023-04-07 17:30:04 -04:00
|
|
|
<td class="text right">{{$.locale.Tr "repo.wiki.last_updated" $timeSince | Safe}}</td>
|
2015-12-07 17:30:52 -05:00
|
|
|
</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" .}}
|