d55a0b7238
* Refactor `i18n` to `locale` - Currently we're using the `i18n` variable naming for the `locale` struct. This contains locale's specific information and cannot be used for general i18n purpose, therefore refactoring it to `locale` makes more sense. - Ref: https://github.com/go-gitea/gitea/pull/20096#discussion_r906699200 * Update routers/install/install.go
26 lines
854 B
Handlebars
26 lines
854 B
Handlebars
{{template "base/head" .}}
|
|
<div class="page-content repository labels">
|
|
{{template "repo/header" .}}
|
|
<div class="ui container">
|
|
<div class="navbar">
|
|
{{template "repo/issue/navbar" .}}
|
|
{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
|
|
<div class="ui right">
|
|
<div class="ui green new-label button">{{.locale.Tr "repo.issues.new_label"}}</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
<div class="ui divider"></div>
|
|
{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
|
|
{{template "repo/issue/labels/label_new" .}}
|
|
{{end}}
|
|
{{template "base/alert" .}}
|
|
{{template "repo/issue/labels/label_list" .}}
|
|
</div>
|
|
</div>
|
|
|
|
{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived) }}
|
|
{{template "repo/issue/labels/edit_delete_label" .}}
|
|
{{end}}
|
|
</div>
|
|
{{template "base/footer" .}}
|