gitea源码

12345678910111213141516171819
  1. {{template "base/head" .}}
  2. <div role="main" aria-label="{{.Title}}" class="page-content repository labels">
  3. {{template "repo/header" .}}
  4. <div class="ui container">
  5. <div class="issue-navbar tw-mb-4">
  6. {{template "repo/issue/navbar" .}}
  7. {{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
  8. <button class="ui small primary new-label button">{{ctx.Locale.Tr "repo.issues.new_label"}}</button>
  9. {{end}}
  10. </div>
  11. {{template "base/alert" .}}
  12. {{template "repo/issue/labels/label_list" .}}
  13. </div>
  14. {{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
  15. {{template "repo/issue/labels/label_edit_modal" .}}
  16. {{end}}
  17. </div>
  18. {{template "base/footer" .}}