2015-07-23 16:50:05 -04:00
{{ template "base/head" . }}
2023-04-06 20:11:02 -04:00
<div role="main" aria-label=" {{ .Title }} " class="page-content repository issue-list">
2015-07-23 16:50:05 -04:00
{{ template "repo/header" . }}
2015-08-09 10:45:38 -04:00
<div class="ui container">
2023-04-29 23:33:25 -04:00
<div class="list-header">
{{ template "repo/issue/navbar" . }}
{{ template "repo/issue/search" . }}
2019-01-23 13:58:38 -05:00
{{ if not .Repository .IsArchived }}
2023-04-29 23:33:25 -04:00
{{ if .PageIsIssueList }}
<a class="ui small green button" href=" {{ .RepoLink }} /issues/new {{ if .NewIssueChooseTemplate }} /choose {{ end }} "> {{ .locale .Tr "repo.issues.new" }} </a>
{{ else }}
<a class="ui small green button new-pr-button {{ if not .PullRequestCtx .Allowed }} disabled {{ end }} " href=" {{ if .PullRequestCtx .Allowed }} {{ .Repository .Link }} /compare/ {{ .Repository .DefaultBranch | PathEscapeSegments }} ... {{ if ne .Repository .Owner .Name .PullRequestCtx .BaseRepo .Owner .Name }} {{ PathEscape .Repository .Owner .Name }} : {{ end }} {{ .Repository .DefaultBranch | PathEscapeSegments }} {{ end }} "> {{ .locale .Tr "repo.pulls.new" }} </a>
{{ end }}
2019-06-29 05:18:49 -04:00
{{ else }}
{{ if not .PageIsIssueList }}
2023-04-29 23:33:25 -04:00
<a class="ui small green small button {{ if not .PullRequestCtx .Allowed }} disabled {{ end }} " href=" {{ if .PullRequestCtx .Allowed }} {{ .PullRequestCtx .BaseRepo .Link }} /compare/ {{ .PullRequestCtx .BaseRepo .DefaultBranch | PathEscapeSegments }} ... {{ if ne .Repository .Owner .Name .PullRequestCtx .BaseRepo .Owner .Name }} {{ PathEscape .Repository .Owner .Name }} : {{ end }} {{ .Repository .DefaultBranch | PathEscapeSegments }} {{ end }} "> {{ $ .locale .Tr "action.compare_commits_general" }} </a>
2019-06-29 05:18:49 -04:00
{{ end }}
2019-01-23 13:58:38 -05:00
{{ end }}
2015-07-23 16:50:05 -04:00
</div>
2023-04-30 11:51:20 -04:00
<div id="issue-filters" class="issue-list-toolbar">
<div class="issue-list-toolbar-left">
2022-07-28 06:25:18 -04:00
{{ if $ .CanWriteIssuesOrPulls }}
2023-04-30 11:51:20 -04:00
<input type="checkbox" autocomplete="off" class="issue-checkbox-all gt-mr-4" title=" {{ .locale .Tr "repo.issues.action_check_all" }} ">
2022-07-28 06:25:18 -04:00
{{ end }}
2020-11-29 10:52:11 -05:00
{{ template "repo/issue/openclose" . }}
2015-07-23 16:50:05 -04:00
</div>
2023-04-30 11:51:20 -04:00
<div class="issue-list-toolbar-right">
<div class="ui secondary filter stackable menu labels">
2017-12-30 19:47:52 -05:00
<!-- Label -->
2023-04-30 11:51:20 -04:00
<div class="ui {{ if not .Labels }} disabled {{ end }} dropdown jump item label-filter">
2017-12-30 19:47:52 -05:00
<span class="text">
2022-06-27 16:58:46 -04:00
{{ .locale .Tr "repo.issues.filter_label" }}
2020-10-31 18:15:11 -04:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2017-12-30 19:47:52 -05:00
</span>
<div class="menu">
2022-09-23 01:23:24 -04:00
<div class="ui icon search input">
2023-02-13 12:59:59 -05:00
<i class="icon gt-df gt-ac gt-jc"> {{ svg "octicon-search" 1 6 }} </i>
2022-10-10 10:05:32 -04:00
<input type="text" placeholder=" {{ .locale .Tr "repo.issues.filter_label" }} ">
2022-09-23 01:23:24 -04:00
</div>
2022-06-27 16:58:46 -04:00
<span class="info"> {{ .locale .Tr "repo.issues.filter_label_exclude" | Safe }} </span>
2023-05-17 05:21:35 -04:00
<a class="item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels=0&milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_label_select_no_label" }} </a>
2023-01-28 22:45:29 -05:00
<a class="item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_label_no_select" }} </a>
Scoped labels (#22585)
Add a new "exclusive" option per label. This makes it so that when the
label is named `scope/name`, no other label with the same `scope/`
prefix can be set on an issue.
The scope is determined by the last occurence of `/`, so for example
`scope/alpha/name` and `scope/beta/name` are considered to be in
different scopes and can coexist.
Exclusive scopes are not enforced by any database rules, however they
are enforced when editing labels at the models level, automatically
removing any existing labels in the same scope when either attaching a
new label or replacing all labels.
In menus use a circle instead of checkbox to indicate they function as
radio buttons per scope. Issue filtering by label ensures that only a
single scoped label is selected at a time. Clicking with alt key can be
used to remove a scoped label, both when editing individual issues and
batch editing.
Label rendering refactor for consistency and code simplification:
* Labels now consistently have the same shape, emojis and tooltips
everywhere. This includes the label list and label assignment menus.
* In label list, show description below label same as label menus.
* Don't use exactly black/white text colors to look a bit nicer.
* Simplify text color computation. There is no point computing luminance
in linear color space, as this is a perceptual problem and sRGB is
closer to perceptually linear.
* Increase height of label assignment menus to show more labels. Showing
only 3-4 labels at a time leads to a lot of scrolling.
* Render all labels with a new RenderLabel template helper function.
Label creation and editing in multiline modal menu:
* Change label creation to open a modal menu like label editing.
* Change menu layout to place name, description and colors on separate
lines.
* Don't color cancel button red in label editing modal menu.
* Align text to the left in model menu for better readability and
consistent with settings layout elsewhere.
Custom exclusive scoped label rendering:
* Display scoped label prefix and suffix with slightly darker and
lighter background color respectively, and a slanted edge between them
similar to the `/` symbol.
* In menus exclusive labels are grouped with a divider line.
---------
Co-authored-by: Yarden Shoham <hrsi88@gmail.com>
Co-authored-by: Lauris BH <lauris@nix.lv>
2023-02-18 14:17:39 -05:00
{{ $ previousExclusiveScope : = "_no_scope" }}
2017-12-30 19:47:52 -05:00
{{ range .Labels }}
Scoped labels (#22585)
Add a new "exclusive" option per label. This makes it so that when the
label is named `scope/name`, no other label with the same `scope/`
prefix can be set on an issue.
The scope is determined by the last occurence of `/`, so for example
`scope/alpha/name` and `scope/beta/name` are considered to be in
different scopes and can coexist.
Exclusive scopes are not enforced by any database rules, however they
are enforced when editing labels at the models level, automatically
removing any existing labels in the same scope when either attaching a
new label or replacing all labels.
In menus use a circle instead of checkbox to indicate they function as
radio buttons per scope. Issue filtering by label ensures that only a
single scoped label is selected at a time. Clicking with alt key can be
used to remove a scoped label, both when editing individual issues and
batch editing.
Label rendering refactor for consistency and code simplification:
* Labels now consistently have the same shape, emojis and tooltips
everywhere. This includes the label list and label assignment menus.
* In label list, show description below label same as label menus.
* Don't use exactly black/white text colors to look a bit nicer.
* Simplify text color computation. There is no point computing luminance
in linear color space, as this is a perceptual problem and sRGB is
closer to perceptually linear.
* Increase height of label assignment menus to show more labels. Showing
only 3-4 labels at a time leads to a lot of scrolling.
* Render all labels with a new RenderLabel template helper function.
Label creation and editing in multiline modal menu:
* Change label creation to open a modal menu like label editing.
* Change menu layout to place name, description and colors on separate
lines.
* Don't color cancel button red in label editing modal menu.
* Align text to the left in model menu for better readability and
consistent with settings layout elsewhere.
Custom exclusive scoped label rendering:
* Display scoped label prefix and suffix with slightly darker and
lighter background color respectively, and a slanted edge between them
similar to the `/` symbol.
* In menus exclusive labels are grouped with a divider line.
---------
Co-authored-by: Yarden Shoham <hrsi88@gmail.com>
Co-authored-by: Lauris BH <lauris@nix.lv>
2023-02-18 14:17:39 -05:00
{{ $ exclusiveScope : = .ExclusiveScope }}
{{ if and ( ne $ previousExclusiveScope "_no_scope" ) ( ne $ previousExclusiveScope $ exclusiveScope ) }}
<div class="ui divider"></div>
{{ end }}
{{ $ previousExclusiveScope = $ exclusiveScope }}
2023-03-05 16:59:05 -05:00
<a class="item label-filter-item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .QueryString }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} " data-label-id=" {{ .ID }} "> {{ if .IsExcluded }} {{ svg "octicon-circle-slash" }} {{ else if .IsSelected }} {{ if $ exclusiveScope }} {{ svg "octicon-dot-fill" }} {{ else }} {{ svg "octicon-check" }} {{ end }} {{ end }} {{ RenderLabel $ .Context . }} </a>
2017-12-30 19:47:52 -05:00
{{ end }}
</div>
2017-03-14 21:10:35 -04:00
</div>
2015-08-14 23:24:41 -04:00
2017-12-30 19:47:52 -05:00
<!-- Milestone -->
2023-04-30 09:12:49 -04:00
<div class="ui {{ if not ( or .OpenMilestones .ClosedMilestones ) }} disabled {{ end }} dropdown jump item">
2017-12-30 19:47:52 -05:00
<span class="text">
2022-06-27 16:58:46 -04:00
{{ .locale .Tr "repo.issues.filter_milestone" }}
2020-10-31 18:15:11 -04:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2017-12-30 19:47:52 -05:00
</span>
<div class="menu">
2022-09-23 01:23:24 -04:00
<div class="ui icon search input">
2023-02-13 12:59:59 -05:00
<i class="icon gt-df gt-ac gt-jc"> {{ svg "octicon-search" 1 6 }} </i>
2022-10-10 10:05:32 -04:00
<input type="text" placeholder=" {{ .locale .Tr "repo.issues.filter_milestone" }} ">
2022-09-23 01:23:24 -04:00
</div>
2023-04-30 09:12:49 -04:00
<div class="divider"></div>
<a class=" {{ if not $ .MilestoneID }} active selected {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone=0&project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_milestone_all" }} </a>
<a class=" {{ if $ .MilestoneID }} {{ if eq $ .MilestoneID - 1 }} active selected {{ end }} {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone=-1&project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_milestone_none" }} </a>
{{ if .OpenMilestones }}
<div class="divider"></div>
<div class="header"> {{ .locale .Tr "repo.issues.filter_milestone_open" }} </div>
{{ range .OpenMilestones }}
<a class=" {{ if $ .MilestoneID }} {{ if eq $ .MilestoneID .ID }} active selected {{ end }} {{ end }} item" href=" {{ $ .Link }} ?type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ $ .SelectLabels }} &milestone= {{ .ID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} ">
{{ svg "octicon-milestone" 1 6 "mr-2" }}
{{ .Name }}
</a>
{{ end }}
{{ end }}
{{ if .ClosedMilestones }}
<div class="divider"></div>
<div class="header"> {{ .locale .Tr "repo.issues.filter_milestone_closed" }} </div>
{{ range .ClosedMilestones }}
<a class=" {{ if $ .MilestoneID }} {{ if eq $ .MilestoneID .ID }} active selected {{ end }} {{ end }} item" href=" {{ $ .Link }} ?type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ $ .SelectLabels }} &milestone= {{ .ID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} ">
{{ svg "octicon-milestone" 1 6 "mr-2" }}
{{ .Name }}
</a>
{{ end }}
2023-01-28 22:45:29 -05:00
{{ end }}
</div>
</div>
<!-- Project -->
2023-02-04 09:35:08 -05:00
<div class="ui {{ if not ( or .OpenProjects .ClosedProjects ) }} disabled {{ end }} dropdown jump item">
2023-01-28 22:45:29 -05:00
<span class="text">
2023-02-09 11:39:31 -05:00
{{ .locale .Tr "repo.issues.filter_project" }}
2023-01-28 22:45:29 -05:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
</span>
<div class="menu">
<div class="ui icon search input">
2023-02-13 12:59:59 -05:00
<i class="icon gt-df gt-ac gt-jc"> {{ svg "octicon-search" 1 6 }} </i>
2023-02-09 11:39:31 -05:00
<input type="text" placeholder=" {{ .locale .Tr "repo.issues.filter_project" }} ">
2023-01-28 22:45:29 -05:00
</div>
2023-02-04 09:35:08 -05:00
<a class="item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_project_all" }} </a>
<a class="item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &project=-1&assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_project_none" }} </a>
{{ if .OpenProjects }}
<div class="divider"></div>
<div class="header">
{{ .locale .Tr "repo.issues.new.open_projects" }}
</div>
{{ range .OpenProjects }}
2023-03-24 03:11:23 -04:00
<a class=" {{ if $ .ProjectID }} {{ if eq $ .ProjectID .ID }} active selected {{ end }} {{ end }} item gt-df" href=" {{ $ .Link }} ?type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ $ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ .ID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} ">
{{ svg .IconName 1 8 "gt-mr-3 gt-shrink-0" }} <span class="gt-ellipsis"> {{ .Title }} </span>
2023-02-04 09:35:08 -05:00
</a>
{{ end }}
{{ end }}
{{ if .ClosedProjects }}
<div class="divider"></div>
<div class="header">
{{ .locale .Tr "repo.issues.new.closed_projects" }}
</div>
{{ range .ClosedProjects }}
<a class=" {{ if $ .ProjectID }} {{ if eq $ .ProjectID .ID }} active selected {{ end }} {{ end }} item" href=" {{ $ .Link }} ?type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ $ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ .ID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} ">
2023-03-19 08:44:48 -04:00
{{ svg .IconName 1 8 "gt-mr-3" }} {{ .Title }}
2023-02-04 09:35:08 -05:00
</a>
{{ end }}
2022-08-08 16:03:58 -04:00
{{ end }}
</div>
</div>
<!-- Author -->
2023-04-06 20:11:02 -04:00
<div class="ui dropdown jump item user-remote-search" data-tooltip-content=" {{ .locale .Tr "repo.author_search_tooltip" }} "
data-search-url=" {{ $ .Link }} /posters"
data-selected-user-id=" {{ $ .PosterID }} "
data-action-jump-url=" {{ $ .Link }} ?type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ $ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= { user_id}"
>
2022-08-08 16:03:58 -04:00
<span class="text">
{{ .locale .Tr "repo.issues.filter_poster" }}
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
</span>
<div class="menu">
2022-09-26 06:15:12 -04:00
<div class="ui icon search input">
2023-02-13 12:59:59 -05:00
<i class="icon gt-df gt-ac gt-jc"> {{ svg "octicon-search" 1 6 }} </i>
2022-10-10 10:05:32 -04:00
<input type="text" placeholder=" {{ .locale .Tr "repo.issues.filter_poster" }} ">
2022-09-26 06:15:12 -04:00
</div>
2023-04-06 20:11:02 -04:00
<a class="item" data-value="0"> {{ .locale .Tr "repo.issues.filter_poster_no_select" }} </a>
2017-12-30 19:47:52 -05:00
</div>
2017-03-14 21:10:35 -04:00
</div>
2015-08-15 00:07:08 -04:00
2017-12-30 19:47:52 -05:00
<!-- Assignee -->
<div class="ui {{ if not .Assignees }} disabled {{ end }} dropdown jump item">
<span class="text">
2022-06-27 16:58:46 -04:00
{{ .locale .Tr "repo.issues.filter_assignee" }}
2020-10-31 18:15:11 -04:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2017-12-30 19:47:52 -05:00
</span>
<div class="menu">
2022-09-23 01:23:24 -04:00
<div class="ui icon search input">
2023-02-13 12:59:59 -05:00
<i class="icon gt-df gt-ac gt-jc"> {{ svg "octicon-search" 1 6 }} </i>
2022-10-10 10:05:32 -04:00
<input type="text" placeholder=" {{ .locale .Tr "repo.issues.filter_assignee" }} ">
2022-09-23 01:23:24 -04:00
</div>
2023-05-17 05:21:35 -04:00
<a class="item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee=-1&poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_assginee_no_assignee" }} </a>
2023-01-28 22:45:29 -05:00
<a class="item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_assginee_no_select" }} </a>
2017-12-30 19:47:52 -05:00
{{ range .Assignees }}
2023-03-24 03:11:23 -04:00
<a class=" {{ if eq $ .AssigneeID .ID }} active selected {{ end }} item gt-df" href=" {{ $ .Link }} ?type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ $ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ .ID }} &poster= {{ $ .PosterID }} ">
2023-04-06 20:11:02 -04:00
{{ avatar $ .Context . 2 0 }} {{ template "repo/search_name" . }}
2020-12-03 13:46:11 -05:00
</a>
2017-12-30 19:47:52 -05:00
{{ end }}
</div>
2017-03-14 21:10:35 -04:00
</div>
2015-08-15 00:07:08 -04:00
2017-12-30 19:47:52 -05:00
{{ if .IsSigned }}
<!-- Type -->
<div class="ui dropdown type jump item">
<span class="text">
2022-06-27 16:58:46 -04:00
{{ .locale .Tr "repo.issues.filter_type" }}
2020-10-31 18:15:11 -04:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2017-12-30 19:47:52 -05:00
</span>
<div class="menu">
2023-01-28 22:45:29 -05:00
<a class=" {{ if eq .ViewType "all" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=all&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.all_issues" }} </a>
<a class=" {{ if eq .ViewType "assigned" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=assigned&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.assigned_to_you" }} </a>
<a class=" {{ if eq .ViewType "created_by" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=created_by&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.created_by_you" }} </a>
2021-01-17 11:34:19 -05:00
{{ if .PageIsPullList }}
2023-01-28 22:45:29 -05:00
<a class=" {{ if eq .ViewType "review_requested" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=review_requested&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.review_requested" }} </a>
2023-02-24 21:55:50 -05:00
<a class=" {{ if eq .ViewType "reviewed_by" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=reviewed_by&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.reviewed_by_you" }} </a>
2021-01-17 11:34:19 -05:00
{{ end }}
2023-02-24 21:55:50 -05:00
<a class=" {{ if eq .ViewType "mentioned" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=mentioned&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.mentioning_you" }} </a>
2017-12-30 19:47:52 -05:00
</div>
</div>
{{ end }}
<!-- Sort -->
2023-04-29 23:33:25 -04:00
<div class="list-header-sort ui small dropdown downward type jump item">
2017-06-14 23:09:03 -04:00
<span class="text">
2022-06-27 16:58:46 -04:00
{{ .locale .Tr "repo.issues.filter_sort" }}
2020-10-31 18:15:11 -04:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2017-06-14 23:09:03 -04:00
</span>
2023-04-01 01:47:54 -04:00
<div class="menu">
2023-01-28 22:45:29 -05:00
<a class=" {{ if or ( eq .SortType "latest" ) ( not .SortType ) }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=latest&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.latest" }} </a>
<a class=" {{ if eq .SortType "oldest" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=oldest&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.oldest" }} </a>
<a class=" {{ if eq .SortType "recentupdate" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=recentupdate&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.recentupdate" }} </a>
<a class=" {{ if eq .SortType "leastupdate" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=leastupdate&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.leastupdate" }} </a>
<a class=" {{ if eq .SortType "mostcomment" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=mostcomment&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.mostcomment" }} </a>
<a class=" {{ if eq .SortType "leastcomment" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=leastcomment&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.leastcomment" }} </a>
<a class=" {{ if eq .SortType "nearduedate" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=nearduedate&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.nearduedate" }} </a>
<a class=" {{ if eq .SortType "farduedate" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=farduedate&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.farduedate" }} </a>
2017-06-14 23:09:03 -04:00
</div>
2017-03-14 21:10:35 -04:00
</div>
</div>
</div>
</div>
2023-04-30 11:51:20 -04:00
<div id="issue-actions" class="issue-list-toolbar gt-hidden">
<div class="issue-list-toolbar-left">
2020-11-29 10:52:11 -05:00
{{ template "repo/issue/openclose" . }}
2015-08-15 00:07:08 -04:00
</div>
2023-04-30 11:51:20 -04:00
<div class="issue-list-toolbar-right">
2017-12-30 19:47:52 -05:00
<div class="ui secondary filter stackable menu">
2019-06-29 05:18:49 -04:00
{{ if not .Repository .IsArchived }}
2019-02-19 18:09:47 -05:00
<!-- Action Button -->
{{ if .IsShowClosed }}
2023-05-10 17:59:58 -04:00
<button class="ui green active basic button issue-action gt-ml-auto" data-action="open" data-url=" {{ $ .RepoLink }} /issues/status"> {{ .locale .Tr "repo.issues.action_open" }} </button>
2019-02-19 18:09:47 -05:00
{{ else }}
2023-05-10 17:59:58 -04:00
<button class="ui red active basic button issue-action gt-ml-auto" data-action="close" data-url=" {{ $ .RepoLink }} /issues/status"> {{ .locale .Tr "repo.issues.action_close" }} </button>
2019-02-19 18:09:47 -05:00
{{ end }}
2017-12-30 19:47:52 -05:00
<!-- Labels -->
2019-02-19 18:09:47 -05:00
<div class="ui {{ if not .Labels }} disabled {{ end }} dropdown jump item">
2017-12-30 19:47:52 -05:00
<span class="text">
2022-06-27 16:58:46 -04:00
{{ .locale .Tr "repo.issues.action_label" }}
2020-10-31 18:15:11 -04:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2017-12-30 19:47:52 -05:00
</span>
<div class="menu">
2023-05-17 05:21:35 -04:00
<div class="item issue-action" data-action="clear" data-url=" {{ $ .RepoLink }} /issues/labels">
{{ .locale .Tr "repo.issues.new.clear_labels" }}
</div>
Scoped labels (#22585)
Add a new "exclusive" option per label. This makes it so that when the
label is named `scope/name`, no other label with the same `scope/`
prefix can be set on an issue.
The scope is determined by the last occurence of `/`, so for example
`scope/alpha/name` and `scope/beta/name` are considered to be in
different scopes and can coexist.
Exclusive scopes are not enforced by any database rules, however they
are enforced when editing labels at the models level, automatically
removing any existing labels in the same scope when either attaching a
new label or replacing all labels.
In menus use a circle instead of checkbox to indicate they function as
radio buttons per scope. Issue filtering by label ensures that only a
single scoped label is selected at a time. Clicking with alt key can be
used to remove a scoped label, both when editing individual issues and
batch editing.
Label rendering refactor for consistency and code simplification:
* Labels now consistently have the same shape, emojis and tooltips
everywhere. This includes the label list and label assignment menus.
* In label list, show description below label same as label menus.
* Don't use exactly black/white text colors to look a bit nicer.
* Simplify text color computation. There is no point computing luminance
in linear color space, as this is a perceptual problem and sRGB is
closer to perceptually linear.
* Increase height of label assignment menus to show more labels. Showing
only 3-4 labels at a time leads to a lot of scrolling.
* Render all labels with a new RenderLabel template helper function.
Label creation and editing in multiline modal menu:
* Change label creation to open a modal menu like label editing.
* Change menu layout to place name, description and colors on separate
lines.
* Don't color cancel button red in label editing modal menu.
* Align text to the left in model menu for better readability and
consistent with settings layout elsewhere.
Custom exclusive scoped label rendering:
* Display scoped label prefix and suffix with slightly darker and
lighter background color respectively, and a slanted edge between them
similar to the `/` symbol.
* In menus exclusive labels are grouped with a divider line.
---------
Co-authored-by: Yarden Shoham <hrsi88@gmail.com>
Co-authored-by: Lauris BH <lauris@nix.lv>
2023-02-18 14:17:39 -05:00
{{ $ previousExclusiveScope : = "_no_scope" }}
2017-12-30 19:47:52 -05:00
{{ range .Labels }}
Scoped labels (#22585)
Add a new "exclusive" option per label. This makes it so that when the
label is named `scope/name`, no other label with the same `scope/`
prefix can be set on an issue.
The scope is determined by the last occurence of `/`, so for example
`scope/alpha/name` and `scope/beta/name` are considered to be in
different scopes and can coexist.
Exclusive scopes are not enforced by any database rules, however they
are enforced when editing labels at the models level, automatically
removing any existing labels in the same scope when either attaching a
new label or replacing all labels.
In menus use a circle instead of checkbox to indicate they function as
radio buttons per scope. Issue filtering by label ensures that only a
single scoped label is selected at a time. Clicking with alt key can be
used to remove a scoped label, both when editing individual issues and
batch editing.
Label rendering refactor for consistency and code simplification:
* Labels now consistently have the same shape, emojis and tooltips
everywhere. This includes the label list and label assignment menus.
* In label list, show description below label same as label menus.
* Don't use exactly black/white text colors to look a bit nicer.
* Simplify text color computation. There is no point computing luminance
in linear color space, as this is a perceptual problem and sRGB is
closer to perceptually linear.
* Increase height of label assignment menus to show more labels. Showing
only 3-4 labels at a time leads to a lot of scrolling.
* Render all labels with a new RenderLabel template helper function.
Label creation and editing in multiline modal menu:
* Change label creation to open a modal menu like label editing.
* Change menu layout to place name, description and colors on separate
lines.
* Don't color cancel button red in label editing modal menu.
* Align text to the left in model menu for better readability and
consistent with settings layout elsewhere.
Custom exclusive scoped label rendering:
* Display scoped label prefix and suffix with slightly darker and
lighter background color respectively, and a slanted edge between them
similar to the `/` symbol.
* In menus exclusive labels are grouped with a divider line.
---------
Co-authored-by: Yarden Shoham <hrsi88@gmail.com>
Co-authored-by: Lauris BH <lauris@nix.lv>
2023-02-18 14:17:39 -05:00
{{ $ exclusiveScope : = .ExclusiveScope }}
{{ if and ( ne $ previousExclusiveScope "_no_scope" ) ( ne $ previousExclusiveScope $ exclusiveScope ) }}
<div class="ui divider"></div>
{{ end }}
{{ $ previousExclusiveScope = $ exclusiveScope }}
2020-04-30 04:10:15 -04:00
<div class="item issue-action" data-action="toggle" data-element-id=" {{ .ID }} " data-url=" {{ $ .RepoLink }} /issues/labels">
2023-04-22 14:16:22 -04:00
{{ if SliceUtils .Contains $ .SelLabelIDs .ID }} {{ if $ exclusiveScope }} {{ svg "octicon-dot-fill" }} {{ else }} {{ svg "octicon-check" }} {{ end }} {{ end }} {{ RenderLabel $ .Context . }}
2017-12-30 19:47:52 -05:00
</div>
{{ end }}
</div>
2017-03-14 21:10:35 -04:00
</div>
2017-12-30 19:47:52 -05:00
<!-- Milestone -->
2023-05-11 09:19:42 -04:00
<div class="ui {{ if not ( or .OpenMilestones .ClosedMilestones ) }} disabled {{ end }} dropdown jump item">
2017-12-30 19:47:52 -05:00
<span class="text">
2022-06-27 16:58:46 -04:00
{{ .locale .Tr "repo.issues.action_milestone" }}
2020-10-31 18:15:11 -04:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2017-12-30 19:47:52 -05:00
</span>
<div class="menu">
<div class="item issue-action" data-element-id="0" data-url=" {{ $ .Link }} /milestone">
2022-06-27 16:58:46 -04:00
{{ .locale .Tr "repo.issues.action_milestone_no_select" }}
2017-03-14 21:10:35 -04:00
</div>
2023-05-11 09:19:42 -04:00
{{ if .OpenMilestones }}
<div class="divider"></div>
<div class="header"> {{ .locale .Tr "repo.issues.filter_milestone_open" }} </div>
{{ range .OpenMilestones }}
<div class="item issue-action" data-element-id=" {{ .ID }} " data-url=" {{ $ .RepoLink }} /issues/milestone">
{{ .Name }}
</div>
{{ end }}
{{ end }}
{{ if .ClosedMilestones }}
<div class="divider"></div>
<div class="header"> {{ .locale .Tr "repo.issues.filter_milestone_open" }} </div>
{{ range .ClosedMilestones }}
<div class="item issue-action" data-element-id=" {{ .ID }} " data-url=" {{ $ .RepoLink }} /issues/milestone">
{{ .Name }}
</div>
{{ end }}
2017-12-30 19:47:52 -05:00
{{ end }}
</div>
2017-03-14 21:10:35 -04:00
</div>
2021-10-07 18:00:02 -04:00
<!-- Projects -->
2023-02-04 09:35:08 -05:00
<div class="ui {{ if not ( or .OpenProjects .ClosedProjects ) }} disabled {{ end }} dropdown jump item">
2021-10-07 18:00:02 -04:00
<span class="text">
2022-06-27 16:58:46 -04:00
{{ .locale .Tr "repo.project_board" }}
2021-10-07 18:00:02 -04:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
</span>
<div class="menu">
<div class="item issue-action" data-element-id="0" data-url=" {{ $ .Link }} /projects">
2023-02-04 09:35:08 -05:00
{{ .locale .Tr "repo.issues.new.clear_projects" }}
2021-10-07 18:00:02 -04:00
</div>
2023-02-04 09:35:08 -05:00
{{ if .OpenProjects }}
<div class="divider"></div>
<div class="header">
{{ .locale .Tr "repo.issues.new.open_projects" }}
</div>
{{ range .OpenProjects }}
<div class="item issue-action" data-element-id=" {{ .ID }} " data-url=" {{ $ .RepoLink }} /issues/projects">
2023-03-19 08:44:48 -04:00
{{ svg .IconName 1 8 "gt-mr-3" }} {{ .Title }}
2023-02-04 09:35:08 -05:00
</div>
{{ end }}
{{ end }}
{{ if .ClosedProjects }}
<div class="divider"></div>
<div class="header">
{{ .locale .Tr "repo.issues.new.closed_projects" }}
</div>
{{ range .ClosedProjects }}
<div class="item issue-action" data-element-id=" {{ .ID }} " data-url=" {{ $ .RepoLink }} /issues/projects">
2023-03-19 08:44:48 -04:00
{{ svg .IconName 1 8 "gt-mr-3" }} {{ .Title }}
2023-02-04 09:35:08 -05:00
</div>
{{ end }}
2021-10-07 18:00:02 -04:00
{{ end }}
</div>
</div>
2018-05-09 12:29:04 -04:00
<!-- Assignees -->
2017-12-30 19:47:52 -05:00
<div class="ui {{ if not .Assignees }} disabled {{ end }} dropdown jump item">
<span class="text">
2022-06-27 16:58:46 -04:00
{{ .locale .Tr "repo.issues.action_assignee" }}
2020-10-31 18:15:11 -04:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2017-12-30 19:47:52 -05:00
</span>
<div class="menu">
2023-05-17 05:21:35 -04:00
<div class="item issue-action" data-action="clear" data-url=" {{ $ .Link }} /assignee">
{{ .locale .Tr "repo.issues.new.clear_assignees" }}
</div>
2017-12-30 19:47:52 -05:00
<div class="item issue-action" data-element-id="0" data-url=" {{ $ .Link }} /assignee">
2022-06-27 16:58:46 -04:00
{{ .locale .Tr "repo.issues.action_assignee_no_select" }}
2017-03-14 21:10:35 -04:00
</div>
2017-12-30 19:47:52 -05:00
{{ range .Assignees }}
<div class="item issue-action" data-element-id=" {{ .ID }} " data-url=" {{ $ .RepoLink }} /issues/assignee">
2023-04-06 20:11:02 -04:00
{{ avatar $ .Context . 2 0 }} {{ .GetDisplayName }}
2017-12-30 19:47:52 -05:00
</div>
{{ end }}
</div>
2017-03-14 21:10:35 -04:00
</div>
2019-06-29 05:18:49 -04:00
{{ end }}
2015-07-23 16:50:05 -04:00
</div>
</div>
</div>
2023-04-07 10:39:08 -04:00
{{ template "shared/issuelist" dict "." . "listType" "repo" }}
2015-07-23 16:50:05 -04:00
</div>
2014-03-25 11:00:26 -04:00
</div>
2015-07-30 16:14:52 -04:00
{{ template "base/footer" . }}