2015-07-24 02:20:05 +05:30
{{ template "base/head" . }}
2023-04-07 05:41:02 +05:30
<div role="main" aria-label=" {{ .Title }} " class="page-content repository issue-list">
2015-07-24 02:20:05 +05:30
{{ template "repo/header" . }}
2015-08-09 20:15:38 +05:30
<div class="ui container">
2023-05-25 18:47:19 +05:30
{{ if .PinnedIssues }}
<div id="issue-pins" {{ if .IsRepoAdmin }} data-is-repo-admin {{ end }} >
{{ range .PinnedIssues }}
2023-05-30 20:56:51 +05:30
<div class="pinned-issue-card gt-word-break" data-move-url=" {{ $ .Link }} /move_pin" data-issue-id=" {{ .ID }} ">
2023-05-25 18:47:19 +05:30
{{ if eq $ .Project .CardType 1 }}
<div class="card-attachment-images">
{{ range ( in dex $ .issuesAttachmentMap .ID ) }}
<img src=" {{ .DownloadURL }} " alt=" {{ .Name }} ">
{{ end }}
</div>
{{ end }}
<div class="content gt-p-0">
<div class="header gt-df gt-items-start">
<div class="pinned-issue-icon">
{{ template "shared/issueicon" . }}
</div>
<a class="pinned-issue-title muted issue-title" href=" {{ .Link }} "> {{ .Title | RenderEmoji $ .Context | RenderCodeBlock }} </a>
{{ if $ .IsRepoAdmin }}
2023-05-30 20:56:51 +05:30
<a role="button" class="pinned-issue-unpin muted gt-df gt-ac" data-tooltip-content= {{ $ .locale .Tr "repo.issues.unpin_issue" }} data-issue-id=" {{ .ID }} " data-unpin-url=" {{ $ .Link }} /unpin/ {{ .Index }} ">
2023-05-25 18:47:19 +05:30
{{ svg "octicon-x" 1 6 }}
</a>
{{ end }}
</div>
<div class="meta gt-my-2">
2023-06-09 14:07:47 +05:30
<span class="text light grey muted-links">
2023-05-25 18:47:19 +05:30
# {{ .Index }}
{{ $ timeStr : = TimeSinceUnix .GetLastEventTimestamp $ .locale }}
{{ if .OriginalAuthor }}
{{ $ .locale .Tr .GetLastEventLabelFake $ timeStr ( .OriginalAuthor | Escape ) | Safe }}
{{ else if gt .Poster .ID 0 }}
{{ $ .locale .Tr .GetLastEventLabel $ timeStr ( .Poster .HomeLink | Escape ) ( .Poster .GetDisplayName | Escape ) | Safe }}
{{ else }}
{{ $ .locale .Tr .GetLastEventLabelFake $ timeStr ( .Poster .GetDisplayName | Escape ) | Safe }}
{{ end }}
</span>
</div>
{{ - if .MilestoneID }}
<div class="meta gt-my-2">
<a class="milestone" href=" {{ $ .RepoLink }} /milestone/ {{ .MilestoneID }} ">
{{ svg "octicon-milestone" 1 6 "gt-mr-2 gt-vm" }}
<span class="gt-vm"> {{ .Milestone .Name }} </span>
</a>
</div>
{{ - end }}
</div>
{{ if or .Labels .Assignees }}
<div class="extra content labels-list gt-p-0 gt-pt-2">
{{ range .Labels }}
<a href=" {{ $ .RepoLink }} /issues?labels= {{ .ID }} "> {{ RenderLabel $ .Context . }} </a>
{{ end }}
<div class="right floated">
{{ range .Assignees }}
<a href=" {{ .HomeLink }} " data-tooltip-content=" {{ $ .locale .Tr "repo.projects.column.assigned_to" }} {{ .Name }} "> {{ avatar $ .Context . 2 8 "mini gt-mr-3" }} </a>
{{ end }}
</div>
</div>
{{ end }}
</div>
{{ end }}
</div>
{{ end }}
2023-04-30 09:03:25 +05:30
<div class="list-header">
{{ template "repo/issue/navbar" . }}
{{ template "repo/issue/search" . }}
2019-01-24 00:28:38 +05:30
{{ if not .Repository .IsArchived }}
2023-04-30 09:03:25 +05:30
{{ if .PageIsIssueList }}
2023-06-18 16:01:42 +05:30
<a class="ui small green button issue-list-new" href=" {{ .RepoLink }} /issues/new {{ if .NewIssueChooseTemplate }} /choose {{ end }} "> {{ .locale .Tr "repo.issues.new" }} </a>
2023-04-30 09:03:25 +05:30
{{ else }}
2023-06-18 16:01:42 +05:30
<a class="ui small green button new-pr-button issue-list-new {{ 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>
2023-04-30 09:03:25 +05:30
{{ end }}
2019-06-29 14:48:49 +05:30
{{ else }}
{{ if not .PageIsIssueList }}
2023-06-18 16:01:42 +05:30
<a class="ui small green small button issue-list-new {{ 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 14:48:49 +05:30
{{ end }}
2019-01-24 00:28:38 +05:30
{{ end }}
2015-07-24 02:20:05 +05:30
</div>
2015-08-15 08:54:41 +05:30
2023-07-14 01:30:38 +05:30
{{ template "repo/issue/filters" . }}
2023-04-30 21:21:20 +05:30
<div id="issue-actions" class="issue-list-toolbar gt-hidden">
<div class="issue-list-toolbar-left">
2020-11-29 21:22:11 +05:30
{{ template "repo/issue/openclose" . }}
2015-08-15 09:37:08 +05:30
</div>
2023-04-30 21:21:20 +05:30
<div class="issue-list-toolbar-right">
2023-06-19 22:42:15 +05:30
<div class="ui secondary filter menu">
2019-06-29 14:48:49 +05:30
{{ if not .Repository .IsArchived }}
2019-02-20 04:39:47 +05:30
<!-- Action Button -->
{{ if .IsShowClosed }}
2023-07-14 01:30:38 +05:30
<button class="ui green basic button issue-action" data-action="open" data-url=" {{ $ .RepoLink }} /issues/status"> {{ .locale .Tr "repo.issues.action_open" }} </button>
2019-02-20 04:39:47 +05:30
{{ else }}
2023-07-14 01:30:38 +05:30
<button class="ui red basic button issue-action" data-action="close" data-url=" {{ $ .RepoLink }} /issues/status"> {{ .locale .Tr "repo.issues.action_close" }} </button>
2023-06-19 13:16:50 +05:30
{{ end }}
{{ if $ .IsRepoAdmin }}
2023-07-14 01:30:38 +05:30
<button class="ui red button issue-action"
2023-06-19 13:16:50 +05:30
data-action="delete" data-url=" {{ $ .RepoLink }} /issues/delete"
data-action-delete-confirm=" {{ .locale .Tr "confirm_delete_selected" }} "
> {{ .locale .Tr "repo.issues.delete" }} </button>
2019-02-20 04:39:47 +05:30
{{ end }}
2017-12-31 06:17:52 +05:30
<!-- Labels -->
2019-02-20 04:39:47 +05:30
<div class="ui {{ if not .Labels }} disabled {{ end }} dropdown jump item">
2017-12-31 06:17:52 +05:30
<span class="text">
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "repo.issues.action_label" }}
2020-11-01 03:45:11 +05:30
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2017-12-31 06:17:52 +05:30
</span>
<div class="menu">
2023-05-17 14:51:35 +05:30
<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-19 00:47:39 +05:30
{{ $ previousExclusiveScope : = "_no_scope" }}
2017-12-31 06:17:52 +05:30
{{ 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-19 00:47:39 +05:30
{{ $ exclusiveScope : = .ExclusiveScope }}
{{ if and ( ne $ previousExclusiveScope "_no_scope" ) ( ne $ previousExclusiveScope $ exclusiveScope ) }}
2023-06-29 17:54:22 +05:30
<div class="divider"></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-19 00:47:39 +05:30
{{ end }}
{{ $ previousExclusiveScope = $ exclusiveScope }}
2020-04-30 13:40:15 +05:30
<div class="item issue-action" data-action="toggle" data-element-id=" {{ .ID }} " data-url=" {{ $ .RepoLink }} /issues/labels">
2023-04-22 23:46:22 +05:30
{{ if SliceUtils .Contains $ .SelLabelIDs .ID }} {{ if $ exclusiveScope }} {{ svg "octicon-dot-fill" }} {{ else }} {{ svg "octicon-check" }} {{ end }} {{ end }} {{ RenderLabel $ .Context . }}
2017-12-31 06:17:52 +05:30
</div>
{{ end }}
</div>
2017-03-15 06:40:35 +05:30
</div>
2017-12-31 06:17:52 +05:30
<!-- Milestone -->
2023-05-11 18:49:42 +05:30
<div class="ui {{ if not ( or .OpenMilestones .ClosedMilestones ) }} disabled {{ end }} dropdown jump item">
2017-12-31 06:17:52 +05:30
<span class="text">
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "repo.issues.action_milestone" }}
2020-11-01 03:45:11 +05:30
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2017-12-31 06:17:52 +05:30
</span>
<div class="menu">
<div class="item issue-action" data-element-id="0" data-url=" {{ $ .Link }} /milestone">
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "repo.issues.action_milestone_no_select" }}
2017-03-15 06:40:35 +05:30
</div>
2023-05-11 18:49:42 +05:30
{{ 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-31 06:17:52 +05:30
{{ end }}
</div>
2017-03-15 06:40:35 +05:30
</div>
2021-10-08 03:30:02 +05:30
<!-- Projects -->
2023-02-04 20:05:08 +05:30
<div class="ui {{ if not ( or .OpenProjects .ClosedProjects ) }} disabled {{ end }} dropdown jump item">
2021-10-08 03:30:02 +05:30
<span class="text">
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "repo.project_board" }}
2021-10-08 03:30:02 +05:30
{{ 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 20:05:08 +05:30
{{ .locale .Tr "repo.issues.new.clear_projects" }}
2021-10-08 03:30:02 +05:30
</div>
2023-02-04 20:05:08 +05:30
{{ 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 18:14:48 +05:30
{{ svg .IconName 1 8 "gt-mr-3" }} {{ .Title }}
2023-02-04 20:05:08 +05:30
</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 18:14:48 +05:30
{{ svg .IconName 1 8 "gt-mr-3" }} {{ .Title }}
2023-02-04 20:05:08 +05:30
</div>
{{ end }}
2021-10-08 03:30:02 +05:30
{{ end }}
</div>
</div>
2018-05-09 21:59:04 +05:30
<!-- Assignees -->
2017-12-31 06:17:52 +05:30
<div class="ui {{ if not .Assignees }} disabled {{ end }} dropdown jump item">
<span class="text">
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "repo.issues.action_assignee" }}
2020-11-01 03:45:11 +05:30
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2017-12-31 06:17:52 +05:30
</span>
<div class="menu">
2023-05-17 14:51:35 +05:30
<div class="item issue-action" data-action="clear" data-url=" {{ $ .Link }} /assignee">
{{ .locale .Tr "repo.issues.new.clear_assignees" }}
</div>
2017-12-31 06:17:52 +05:30
<div class="item issue-action" data-element-id="0" data-url=" {{ $ .Link }} /assignee">
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "repo.issues.action_assignee_no_select" }}
2017-03-15 06:40:35 +05:30
</div>
2017-12-31 06:17:52 +05:30
{{ range .Assignees }}
<div class="item issue-action" data-element-id=" {{ .ID }} " data-url=" {{ $ .RepoLink }} /issues/assignee">
2023-04-07 05:41:02 +05:30
{{ avatar $ .Context . 2 0 }} {{ .GetDisplayName }}
2017-12-31 06:17:52 +05:30
</div>
{{ end }}
</div>
2017-03-15 06:40:35 +05:30
</div>
2019-06-29 14:48:49 +05:30
{{ end }}
2015-07-24 02:20:05 +05:30
</div>
</div>
</div>
2023-04-07 20:09:08 +05:30
{{ template "shared/issuelist" dict "." . "listType" "repo" }}
2015-07-24 02:20:05 +05:30
</div>
2014-03-25 20:30:26 +05:30
</div>
2015-07-31 01:44:52 +05:30
{{ template "base/footer" . }}