2015-07-24 21:02:49 +08:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 19:56:10 -03:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository labels">
|
2015-07-24 21:02:49 +08:00
|
|
|
{{template "repo/header" .}}
|
2015-08-09 22:45:38 +08:00
|
|
|
<div class="ui container">
|
2024-04-02 13:48:07 +02:00
|
|
|
<div class="issue-navbar tw-mb-4">
|
2015-07-24 21:02:49 +08:00
|
|
|
{{template "repo/issue/navbar" .}}
|
2019-01-23 19:58:38 +01:00
|
|
|
{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<button class="ui small primary new-label button">{{ctx.Locale.Tr "repo.issues.new_label"}}</button>
|
2015-08-09 22:45:38 +08:00
|
|
|
{{end}}
|
|
|
|
|
</div>
|
|
|
|
|
{{template "base/alert" .}}
|
2020-04-01 00:14:46 -04:00
|
|
|
{{template "repo/issue/labels/label_list" .}}
|
2015-07-24 21:02:49 +08:00
|
|
|
</div>
|
2024-12-08 10:35:28 +08:00
|
|
|
{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
|
|
|
|
|
{{template "repo/issue/labels/label_edit_modal" .}}
|
|
|
|
|
{{end}}
|
2015-07-24 21:02:49 +08:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "base/footer" .}}
|