mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-05 16:59:35 +00:00
e40ab6d0bd
Backport #30238 by @silverwind Create a new `issue-navbar` class specifically for this bar, previous class used in many places and I thought I had them all removed, but not this one. Fixes: https://github.com/go-gitea/gitea/issues/30226 Co-authored-by: silverwind <me@silverwind.io> (cherry picked from commit 39322d9fc4644d2ede3efe3a9c4efee2e493d4cd)
22 lines
842 B
Go HTML Template
22 lines
842 B
Go HTML Template
{{template "base/head" .}}
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository labels">
|
|
{{template "repo/header" .}}
|
|
<div class="ui container">
|
|
<div class="issue-navbar tw-mb-4">
|
|
{{template "repo/issue/navbar" .}}
|
|
{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
|
|
<button class="ui small primary new-label button">{{ctx.Locale.Tr "repo.issues.new_label"}}</button>
|
|
{{end}}
|
|
</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}}
|
|
{{template "base/footer" .}}
|