2015-11-27 07:16:12 +00:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 22:56:10 +00:00
|
|
|
<div role="main" aria-label="{{.Title}}" 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">
|
2024-03-22 19:51:29 +00:00
|
|
|
<h2 class="ui header tw-flex tw-items-center tw-justify-between">
|
2023-09-25 08:56:50 +00:00
|
|
|
<span>{{ctx.Locale.Tr "repo.wiki.pages"}}</span>
|
2023-04-19 17:50:10 +00:00
|
|
|
<span>
|
2023-05-04 07:27:15 +00:00
|
|
|
{{if and .CanWriteWiki (not .Repository.IsMirror)}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<a class="ui small primary button" href="{{.RepoLink}}/wiki?action=_new">{{ctx.Locale.Tr "repo.wiki.new_page_button"}}</a>
|
2020-11-24 19:27:10 +00:00
|
|
|
{{end}}
|
2023-04-19 17:50:10 +00:00
|
|
|
</span>
|
2020-11-24 19:27:10 +00:00
|
|
|
</h2>
|
2023-04-19 17:50:10 +00:00
|
|
|
<table class="ui table wiki-pages-list">
|
2015-12-07 22:30:52 +00:00
|
|
|
<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>
|
2023-09-25 08:56:50 +00:00
|
|
|
<a class="wiki-git-entry" href="{{$.RepoLink}}/wiki/{{.GitEntryName | PathEscape}}" data-tooltip-content="{{ctx.Locale.Tr "repo.wiki.original_git_entry_tooltip"}}">{{svg "octicon-chevron-right"}}</a>
|
2015-12-07 22:30:52 +00:00
|
|
|
</td>
|
2023-09-25 12:42:40 +00:00
|
|
|
{{$timeSince := TimeSinceUnix .UpdatedUnix ctx.Locale}}
|
2024-02-22 17:02:33 +00:00
|
|
|
<td class="text right">{{ctx.Locale.Tr "repo.wiki.last_updated" $timeSince}}</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" .}}
|