Files

103 lines
4.7 KiB
Handlebars
Raw Permalink Normal View History

{{if and $.CanWriteProjects (not $.Repository.IsArchived)}}
<div class="flex-text-block tw-justify-between tw-mb-4">
2023-08-12 12:30:28 +02:00
<div class="small-menu-items ui compact tiny menu list-header-toggle">
2024-03-20 13:56:42 +08:00
<a class="item{{if not .IsShowClosed}} active{{end}}" href="?state=open&q={{$.Keyword}}">
{{svg "octicon-project-symlink" 16 "tw-mr-2"}}
2023-09-25 20:42:40 +08:00
{{ctx.Locale.PrettyNumber .OpenCount}}&nbsp;{{ctx.Locale.Tr "repo.issues.open_title"}}
2023-08-12 12:30:28 +02:00
</a>
2024-03-20 13:56:42 +08:00
<a class="item{{if .IsShowClosed}} active{{end}}" href="?state=closed&q={{$.Keyword}}">
{{svg "octicon-check" 16 "tw-mr-2"}}
2023-09-25 20:42:40 +08:00
{{ctx.Locale.PrettyNumber .ClosedCount}}&nbsp;{{ctx.Locale.Tr "repo.issues.closed_title"}}
2023-08-12 12:30:28 +02:00
</a>
</div>
<a class="ui small primary button" href="{{$.Link}}/new">{{ctx.Locale.Tr "repo.projects.new"}}</a>
2023-07-08 02:06:49 +08:00
</div>
{{end}}
2023-01-20 19:42:33 +08:00
2023-07-08 02:06:49 +08:00
{{template "base/alert" .}}
2023-01-20 19:42:33 +08:00
2023-08-12 12:30:28 +02:00
<div class="list-header">
<!-- Search -->
<form class="list-header-search ui form ignore-dirty">
2024-03-15 00:24:59 +01:00
<input type="hidden" name="state" value="{{$.State}}">
{{template "shared/search/combo" dict "Value" .Keyword "Placeholder" (ctx.Locale.Tr "search.project_kind")}}
2023-08-12 12:30:28 +02:00
</form>
2026-01-22 10:22:20 +08:00
<div class="list-header-filters ui secondary menu tw-m-0">
<!-- Sort -->
<div class="item ui small dropdown jump">
<span class="text">
{{ctx.Locale.Tr "repo.issues.filter_sort"}}
</span>
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
<div class="menu">
<a class="{{if eq .SortType "oldest"}}active {{end}}item" href="?q={{$.Keyword}}&sort=oldest&state={{$.State}}">{{ctx.Locale.Tr "repo.issues.filter_sort.oldest"}}</a>
2025-02-06 03:09:43 +08:00
<a class="{{if eq .SortType "alphabetically"}}active {{end}}item" href="?q={{$.Keyword}}&sort=alphabetically&state={{$.State}}">{{ctx.Locale.Tr "repo.issues.label.filter_sort.alphabetically"}}</a>
<a class="{{if eq .SortType "reversealphabetically"}}active {{end}}item" href="?q={{$.Keyword}}&sort=reversealphabetically&state={{$.State}}">{{ctx.Locale.Tr "repo.issues.label.filter_sort.reverse_alphabetically"}}</a>
<a class="{{if eq .SortType "recentupdate"}}active {{end}}item" href="?q={{$.Keyword}}&sort=recentupdate&state={{$.State}}">{{ctx.Locale.Tr "repo.issues.filter_sort.recentupdate"}}</a>
<a class="{{if eq .SortType "leastupdate"}}active {{end}}item" href="?q={{$.Keyword}}&sort=leastupdate&state={{$.State}}">{{ctx.Locale.Tr "repo.issues.filter_sort.leastupdate"}}</a>
</div>
2023-01-20 19:42:33 +08:00
</div>
2023-07-08 02:06:49 +08:00
</div>
</div>
2023-08-12 12:30:28 +02:00
2023-07-08 02:06:49 +08:00
<div class="milestone-list">
{{range .Projects}}
<li class="milestone-card">
<h3 class="flex-text-block tw-m-0 tw-gap-3">
2023-07-08 02:06:49 +08:00
{{svg .IconName 16}}
<a class="muted tw-break-anywhere" href="{{.Link ctx}}">{{.Title}}</a>
2023-07-08 02:06:49 +08:00
</h3>
<div class="milestone-toolbar">
<div class="group">
<div class="flex-text-block">
{{svg "octicon-issue-opened" 14}}
{{ctx.Locale.PrettyNumber .NumOpenIssues}}&nbsp;{{ctx.Locale.Tr "repo.issues.open_title"}}
2023-01-20 19:42:33 +08:00
</div>
2023-07-08 02:06:49 +08:00
<div class="flex-text-block">
{{svg "octicon-check" 14}}
{{ctx.Locale.PrettyNumber .NumClosedIssues}}&nbsp;{{ctx.Locale.Tr "repo.issues.closed_title"}}
2023-01-20 19:42:33 +08:00
</div>
2023-07-08 02:06:49 +08:00
</div>
{{if and $.CanWriteProjects (not $.Repository.IsArchived)}}
<div class="group">
2023-09-29 14:12:54 +02:00
<a class="flex-text-inline" href="{{.Link ctx}}/edit">{{svg "octicon-pencil" 14}}{{ctx.Locale.Tr "repo.issues.label_edit"}}</a>
2023-07-08 02:06:49 +08:00
{{if .IsClosed}}
2023-09-29 14:12:54 +02:00
<a class="link-action flex-text-inline" href data-url="{{.Link ctx}}/open">{{svg "octicon-check" 14}}{{ctx.Locale.Tr "repo.projects.open"}}</a>
2023-07-08 02:06:49 +08:00
{{else}}
2023-09-29 14:12:54 +02:00
<a class="link-action flex-text-inline" href data-url="{{.Link ctx}}/close">{{svg "octicon-skip" 14}}{{ctx.Locale.Tr "repo.projects.close"}}</a>
2023-01-20 19:42:33 +08:00
{{end}}
<a class="link-action flex-text-inline tw-text-red" href data-modal-confirm="#repo-project-delete-modal" data-url="{{.Link ctx}}/delete">{{svg "octicon-trash" 14}}{{ctx.Locale.Tr "repo.issues.label_delete"}}</a>
2023-07-08 02:06:49 +08:00
</div>
{{end}}
</div>
{{if .Description}}
<div class="render-content markup">{{.RenderedContent}}</div>
2023-01-20 19:42:33 +08:00
{{end}}
2023-07-08 02:06:49 +08:00
</li>
{{else}}
{{if and (eq .OpenCount 0) (eq .ClosedCount 0)}}
<div class="empty-placeholder">
{{svg "octicon-project-symlink" 48}}
<h2>{{ctx.Locale.Tr "repo.projects.empty"}}</h2>
<p>{{ctx.Locale.Tr "repo.projects.empty_description"}}</p>
</div>
{{else}}
<div class="empty-placeholder">
{{svg "octicon-search" 48}}
<h2>{{ctx.Locale.Tr "repo.projects.no_results"}}</h2>
</div>
{{end}}
2023-07-08 02:06:49 +08:00
{{end}}
2023-01-20 19:42:33 +08:00
2023-07-08 02:06:49 +08:00
{{template "base/paginate" .}}
</div>
2023-01-20 19:42:33 +08:00
{{if and $.CanWriteProjects (not $.Repository.IsArchived)}}
<div class="ui small modal" id="repo-project-delete-modal">
<div class="header">{{svg "octicon-trash"}} {{ctx.Locale.Tr "repo.projects.deletion"}}</div>
<div class="content"><p>{{ctx.Locale.Tr "repo.projects.deletion_desc"}}</p></div>
{{template "base/modal_actions_confirm" .}}
2023-01-20 19:42:33 +08:00
</div>
{{end}}