mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
a60e8be8d1
* remove unnecessary web context data fields, and unify the i18n/translation related functions to `Locale` * in development, show an error if a translation key is missing * remove the unnecessary loops `for _, lang := range translation.AllLangs()` for every request, which improves the performance slightly * use `ctx.Locale.Language()` instead of `ctx.Data["Lang"].(string)` * add more comments about how the Locale/LangType fields are used
32 lines
871 B
Handlebars
32 lines
871 B
Handlebars
{{template "base/head" .}}
|
|
<div class="page-content repository wiki pages">
|
|
{{template "repo/header" .}}
|
|
<div class="ui container">
|
|
<h2 class="ui header df ac sb">
|
|
<div>
|
|
{{.i18n.Tr "repo.wiki.pages"}}
|
|
</div>
|
|
<div>
|
|
{{if and .CanWriteWiki (not .IsRepositoryMirror)}}
|
|
<a class="ui green small button" href="{{.RepoLink}}/wiki?action=_new">{{.i18n.Tr "repo.wiki.new_page_button"}}</a>
|
|
{{end}}
|
|
</div>
|
|
</h2>
|
|
<table class="ui table">
|
|
<tbody>
|
|
{{range .Pages}}
|
|
<tr>
|
|
<td>
|
|
{{svg "octicon-file"}}
|
|
<a href="{{$.RepoLink}}/wiki/{{.SubURL}}">{{.Name}}</a>
|
|
</td>
|
|
{{$timeSince := TimeSinceUnix .UpdatedUnix $.i18n.Lang}}
|
|
<td class="text right grey">{{$.i18n.Tr "repo.wiki.last_updated" $timeSince | Safe}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|