2023-08-01 16:54:54 +00:00
|
|
|
{{if and $.CanWriteProjects (not $.Repository.IsArchived)}}
|
2023-08-12 10:30:28 +00:00
|
|
|
<div class="gt-df gt-sb gt-mb-4">
|
|
|
|
<div class="small-menu-items ui compact tiny menu list-header-toggle">
|
|
|
|
<a class="item{{if not .IsShowClosed}} active{{end}}" href="{{$.Link}}?state=open&q={{$.Keyword}}">
|
|
|
|
{{svg "octicon-project-symlink" 16 "gt-mr-3"}}
|
2023-09-25 13:15:51 +00:00
|
|
|
{{ctx.Locale.PrettyNumber .OpenCount}} {{ctx.Locale.Tr "repo.issues.open_title"}}
|
2023-08-12 10:30:28 +00:00
|
|
|
</a>
|
|
|
|
<a class="item{{if .IsShowClosed}} active{{end}}" href="{{$.Link}}?state=closed&q={{$.Keyword}}">
|
|
|
|
{{svg "octicon-check" 16 "gt-mr-3"}}
|
2023-09-25 13:15:51 +00:00
|
|
|
{{ctx.Locale.PrettyNumber .ClosedCount}} {{ctx.Locale.Tr "repo.issues.closed_title"}}
|
2023-08-12 10:30:28 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="gt-text-right">
|
2023-09-25 13:15:51 +00:00
|
|
|
<a class="ui small primary button" href="{{$.Link}}/new">{{ctx.Locale.Tr "repo.projects.new"}}</a>
|
2023-08-12 10:30:28 +00:00
|
|
|
</div>
|
2023-07-07 18:06:49 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2023-01-20 11:42:33 +00:00
|
|
|
|
2023-07-07 18:06:49 +00:00
|
|
|
{{template "base/alert" .}}
|
2023-01-20 11:42:33 +00:00
|
|
|
|
2023-08-12 10:30:28 +00:00
|
|
|
<div class="list-header">
|
|
|
|
<!-- Search -->
|
|
|
|
<form class="list-header-search ui form ignore-dirty">
|
|
|
|
<div class="ui small search fluid action input">
|
|
|
|
<input type="hidden" name="state" value="{{$.State}}">
|
2023-09-25 00:21:38 +00:00
|
|
|
{{template "shared/searchinput" dict "Value" .Keyword}}
|
2023-09-25 13:15:51 +00:00
|
|
|
<button class="ui small icon button" type="submit" aria-label="{{ctx.Locale.Tr "explore.search"}}">
|
2023-08-12 10:30:28 +00:00
|
|
|
{{svg "octicon-search"}}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
2023-07-07 18:06:49 +00:00
|
|
|
<!-- Sort -->
|
2023-08-12 10:30:28 +00:00
|
|
|
<div class="list-header-sort ui small dropdown type jump item">
|
2023-07-07 18:06:49 +00:00
|
|
|
<span class="text">
|
2023-09-25 13:15:51 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_sort"}}
|
2023-07-07 18:06:49 +00:00
|
|
|
</span>
|
2023-09-21 16:24:07 +00:00
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2023-07-07 18:06:49 +00:00
|
|
|
<div class="menu">
|
2023-09-25 13:15:51 +00:00
|
|
|
<a class="{{if eq .SortType "oldest"}}active {{end}}item" href="{{$.Link}}?q={{$.Keyword}}&sort=oldest&state={{$.State}}">{{ctx.Locale.Tr "repo.issues.filter_sort.oldest"}}</a>
|
|
|
|
<a class="{{if eq .SortType "recentupdate"}}active {{end}}item" href="{{$.Link}}?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="{{$.Link}}?q={{$.Keyword}}&sort=leastupdate&state={{$.State}}">{{ctx.Locale.Tr "repo.issues.filter_sort.leastupdate"}}</a>
|
2023-01-20 11:42:33 +00:00
|
|
|
</div>
|
2023-07-07 18:06:49 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-08-12 10:30:28 +00:00
|
|
|
|
2023-07-07 18:06:49 +00:00
|
|
|
<div class="milestone-list">
|
|
|
|
{{range .Projects}}
|
|
|
|
<li class="milestone-card">
|
|
|
|
<h3 class="flex-text-block gt-m-0">
|
|
|
|
{{svg .IconName 16}}
|
2023-09-29 13:35:01 +00:00
|
|
|
<a class="muted" href="{{.Link ctx}}">{{.Title}}</a>
|
2023-07-07 18:06:49 +00:00
|
|
|
</h3>
|
|
|
|
<div class="milestone-toolbar">
|
|
|
|
<div class="group">
|
|
|
|
<div class="flex-text-block">
|
|
|
|
{{svg "octicon-issue-opened" 14}}
|
2023-09-29 13:35:01 +00:00
|
|
|
{{ctx.Locale.PrettyNumber (.NumOpenIssues ctx)}} {{ctx.Locale.Tr "repo.issues.open_title"}}
|
2023-01-20 11:42:33 +00:00
|
|
|
</div>
|
2023-07-07 18:06:49 +00:00
|
|
|
<div class="flex-text-block">
|
|
|
|
{{svg "octicon-check" 14}}
|
2023-09-29 13:35:01 +00:00
|
|
|
{{ctx.Locale.PrettyNumber (.NumClosedIssues ctx)}} {{ctx.Locale.Tr "repo.issues.closed_title"}}
|
2023-01-20 11:42:33 +00:00
|
|
|
</div>
|
2023-07-07 18:06:49 +00:00
|
|
|
</div>
|
|
|
|
{{if and $.CanWriteProjects (not $.Repository.IsArchived)}}
|
|
|
|
<div class="group">
|
2023-09-29 13:35:01 +00:00
|
|
|
<a class="flex-text-inline" href="{{.Link ctx}}/edit">{{svg "octicon-pencil" 14}}{{ctx.Locale.Tr "repo.issues.label_edit"}}</a>
|
2023-07-07 18:06:49 +00:00
|
|
|
{{if .IsClosed}}
|
2023-09-29 13:35:01 +00: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-07 18:06:49 +00:00
|
|
|
{{else}}
|
2023-09-29 13:35:01 +00: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 11:42:33 +00:00
|
|
|
{{end}}
|
2023-09-29 13:35:01 +00:00
|
|
|
<a class="delete-button flex-text-inline" href="#" data-url="{{.Link ctx}}/delete">{{svg "octicon-trash" 14}}{{ctx.Locale.Tr "repo.issues.label_delete"}}</a>
|
2023-07-07 18:06:49 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{if .Description}}
|
|
|
|
<div class="content">
|
|
|
|
{{.RenderedContent|Str2html}}
|
|
|
|
</div>
|
2023-01-20 11:42:33 +00:00
|
|
|
{{end}}
|
2023-07-07 18:06:49 +00:00
|
|
|
</li>
|
|
|
|
{{end}}
|
2023-01-20 11:42:33 +00:00
|
|
|
|
2023-07-07 18:06:49 +00:00
|
|
|
{{template "base/paginate" .}}
|
|
|
|
</div>
|
2023-01-20 11:42:33 +00:00
|
|
|
|
2023-08-01 16:54:54 +00:00
|
|
|
{{if and $.CanWriteProjects (not $.Repository.IsArchived)}}
|
2023-04-24 11:08:59 +00:00
|
|
|
<div class="ui g-modal-confirm delete modal">
|
2023-04-23 09:24:19 +00:00
|
|
|
<div class="header">
|
2023-01-20 11:42:33 +00:00
|
|
|
{{svg "octicon-trash"}}
|
2023-09-25 13:15:51 +00:00
|
|
|
{{ctx.Locale.Tr "repo.projects.deletion"}}
|
2023-01-20 11:42:33 +00:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2023-09-25 13:15:51 +00:00
|
|
|
<p>{{ctx.Locale.Tr "repo.projects.deletion_desc"}}</p>
|
2023-01-20 11:42:33 +00:00
|
|
|
</div>
|
2023-04-23 09:24:19 +00:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2023-01-20 11:42:33 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|