2015-09-01 23:07:02 +00:00
<div class="sixteen wide column title">
2020-10-24 16:48:08 +00:00
<div class="issue-title" id="issue-title-wrapper">
{{ if and ( or .HasIssuesOrPullsWritePermission .IsIssuePoster ) ( not .Repository .IsArchived ) }}
2020-11-29 06:22:04 +00:00
<div class="edit-button">
<div id="edit-title" class="ui basic green not-in-edit button"> {{ .i18n .Tr "repo.issues.edit" }} </div>
</div>
2020-10-24 16:48:08 +00:00
{{ end }}
<h1>
2022-01-19 23:26:57 +00:00
<span id="issue-title"> {{ RenderIssueTitle $ .Context .Issue .Title $ .RepoLink $ .Repository .ComposeMetas }} </span>
2020-11-29 06:22:04 +00:00
<span class="index"># {{ .Issue .Index }} </span>
2015-09-01 23:07:02 +00:00
<div id="edit-title-input" class="ui input" style="display: none">
2020-12-04 11:18:37 +00:00
<input value=" {{ .Issue .Title }} " maxlength="255" autocomplete="off">
2015-09-01 23:07:02 +00:00
</div>
</h1>
2020-04-04 05:39:48 +00:00
{{ if and ( or .HasIssuesOrPullsWritePermission .IsIssuePoster ) ( not .Repository .IsArchived ) }}
2020-11-29 06:22:04 +00:00
<div class="edit-buttons">
2020-10-24 16:48:08 +00:00
<div id="cancel-edit-title" class="ui basic blue in-edit button" style="display: none"> {{ .i18n .Tr "repo.issues.cancel" }} </div>
<div id="save-edit-title" class="ui green in-edit button" style="display: none" data-update-url=" {{ $ .RepoLink }} /issues/ {{ .Issue .Index }} /title" {{ if .Issue .IsPull }} data-target-update-url=" {{ $ .RepoLink }} /pull/ {{ .Issue .Index }} /target_branch" {{ end }} > {{ .i18n .Tr "repo.issues.save" }} </div>
2020-11-29 06:22:04 +00:00
</div>
2015-09-01 23:07:02 +00:00
{{ end }}
</div>
2015-09-02 13:26:56 +00:00
{{ if .HasMerged }}
2021-03-04 03:41:23 +00:00
<div class="ui purple large label"> {{ svg "octicon-git-merge" 1 6 }} {{ if eq .Issue .PullRequest .Status 3 }} {{ .i18n .Tr "repo.pulls.manually_merged" }} {{ else }} {{ .i18n .Tr "repo.pulls.merged" }} {{ end }} </div>
2015-09-02 13:26:56 +00:00
{{ else if .Issue .IsClosed }}
2020-09-11 20:19:00 +00:00
<div class="ui red large label"> {{ if .Issue .IsPull }} {{ svg "octicon-git-pull-request" }} {{ else }} {{ svg "octicon-issue-closed" }} {{ end }} {{ .i18n .Tr "repo.issues.closed_title" }} </div>
2020-01-29 18:54:34 +00:00
{{ else if .Issue .IsPull }}
2020-09-11 20:19:00 +00:00
<div class="ui green large label"> {{ svg "octicon-git-pull-request" }} {{ .i18n .Tr "repo.issues.open_title" }} </div>
2015-09-01 23:07:02 +00:00
{{ else }}
2020-09-11 20:19:00 +00:00
<div class="ui green large label"> {{ svg "octicon-issue-opened" }} {{ .i18n .Tr "repo.issues.open_title" }} </div>
2015-09-01 23:07:02 +00:00
{{ end }}
2015-09-01 23:26:39 +00:00
{{ if .Issue .IsPull }}
2021-02-18 02:45:49 +00:00
{{ $ headHref : = .HeadTarget | Escape }}
{{ if .HeadBranchHTMLURL }}
2021-10-19 17:32:11 +00:00
{{ $ headHref = printf "<a href=\"%s\">%s</a>" ( .HeadBranchHTMLURL | Escape ) $ headHref }}
2021-02-18 02:45:49 +00:00
{{ end }}
2021-11-18 03:26:50 +00:00
{{ $ headHref = printf "%s <a class=\"tooltip\" data-content=\"%s\" data-clipboard-text=\"%s\">%s</a>" $ headHref ( .i18n .Tr "copy_branch" ) ( .HeadTarget | Escape ) ( svg "octicon-copy" 1 4 ) }}
2021-02-18 02:45:49 +00:00
{{ $ baseHref : = .BaseTarget | Escape }}
{{ if .BaseBranchHTMLURL }}
2021-10-19 17:32:11 +00:00
{{ $ baseHref = printf "<a href=\"%s\">%s</a>" ( .BaseBranchHTMLURL | Escape ) $ baseHref }}
2021-02-18 02:45:49 +00:00
{{ end }}
2016-08-16 17:19:09 +00:00
{{ if .Issue .PullRequest .HasMerged }}
2017-12-11 04:37:04 +00:00
{{ $ mergedStr : = TimeSinceUnix .Issue .PullRequest .MergedUnix $ .Lang }}
2019-07-08 02:14:12 +00:00
{{ if .Issue .OriginalAuthor }}
{{ .Issue .OriginalAuthor }}
2021-10-19 17:32:11 +00:00
<span class="pull-desc"> {{ $ .i18n .Tr "repo.pulls.merged_title_desc" .NumCommits $ headHref $ baseHref $ mergedStr | Safe }} </span>
2019-07-08 02:14:12 +00:00
{{ else }}
<a {{ if gt .Issue .PullRequest .Merger .ID 0 }} href=" {{ .Issue .PullRequest .Merger .HomeLink }} " {{ end }} > {{ .Issue .PullRequest .Merger .GetDisplayName }} </a>
2021-10-19 17:32:11 +00:00
<span class="pull-desc"> {{ $ .i18n .Tr "repo.pulls.merged_title_desc" .NumCommits $ headHref $ baseHref $ mergedStr | Safe }} </span>
2019-07-08 02:14:12 +00:00
{{ end }}
2015-09-02 13:26:56 +00:00
{{ else }}
2019-07-08 02:14:12 +00:00
{{ if .Issue .OriginalAuthor }}
2021-10-19 17:32:11 +00:00
<span id="pull-desc" class="pull-desc"> {{ .Issue .OriginalAuthor }} {{ $ .i18n .Tr "repo.pulls.title_desc" .NumCommits $ headHref $ baseHref | Safe }} </span>
2019-07-08 02:14:12 +00:00
{{ else }}
2019-12-16 06:20:25 +00:00
<span id="pull-desc" class="pull-desc">
2021-02-18 02:45:49 +00:00
<a {{ if gt .Issue .Poster .ID 0 }} href=" {{ .Issue .Poster .HomeLink }} " {{ end }} > {{ .Issue .Poster .GetDisplayName }} </a>
2021-10-19 17:32:11 +00:00
{{ $ .i18n .Tr "repo.pulls.title_desc" .NumCommits $ headHref $ baseHref | Safe }}
2021-02-18 02:45:49 +00:00
</span>
2019-07-08 02:14:12 +00:00
{{ end }}
2019-12-16 06:20:25 +00:00
<span id="pull-desc-edit" style="display: none">
2021-04-11 03:46:37 +00:00
<div class="ui floating filter dropdown">
<div class="ui basic small button">
<span class="text"> {{ .i18n .Tr "repo.pulls.compare_compare" }} : {{ $ .HeadTarget }} </span>
</div>
</div>
{{ svg "octicon-arrow-right" }}
<div class="ui floating filter dropdown" data-no-results=" {{ .i18n .Tr "repo.pulls.no_results" }} ">
<div class="ui basic small button">
<span class="text" id="pull-target-branch" data-basename=" {{ $ .BaseName }} " data-branch=" {{ $ .BaseBranch }} "> {{ .i18n .Tr "repo.pulls.compare_base" }} : {{ $ .BaseName }} : {{ $ .BaseBranch }} </span>
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
</div>
<div class="menu">
<div class="ui icon search input">
<i class="icon df ac jc m-0"> {{ svg "octicon-filter" 1 6 }} </i>
<input name="search" placeholder=" {{ .i18n .Tr "repo.pulls.filter_branch" }} ...">
</div>
<div class="scrolling menu" id="branch-select">
{{ range .Branches }}
{{ $ sameBase : = ne $ .BaseName $ .HeadUserName }}
{{ $ differentBranch : = ne . $ .HeadBranch }}
{{ if or $ sameBase $ differentBranch }}
<div class="item {{ if eq $ .BaseBranch . }} selected {{ end }} " data-branch=" {{ . }} "> {{ $ .BaseName }} {{ if $ .HeadRepo }} / {{ $ .HeadRepo }} {{ end }} : {{ . }} </div>
{{ end }}
{{ end }}
</div>
</div>
</div>
</span>
2015-09-02 13:26:56 +00:00
{{ end }}
2015-09-01 23:26:39 +00:00
{{ else }}
2017-12-11 04:37:04 +00:00
{{ $ createdStr : = TimeSinceUnix .Issue .CreatedUnix $ .Lang }}
2015-12-07 22:30:52 +00:00
<span class="time-desc">
2019-07-08 02:14:12 +00:00
{{ if .Issue .OriginalAuthor }}
2021-11-16 18:18:25 +00:00
{{ $ .i18n .Tr "repo.issues.opened_by_fake" $ createdStr ( .Issue .OriginalAuthor | Escape ) | Safe }}
2019-07-08 02:14:12 +00:00
{{ else if gt .Issue .Poster .ID 0 }}
2021-11-16 18:18:25 +00:00
{{ $ .i18n .Tr "repo.issues.opened_by" $ createdStr ( .Issue .Poster .HomeLink | Escape ) ( .Issue .Poster .GetDisplayName | Escape ) | Safe }}
2015-12-07 22:30:52 +00:00
{{ else }}
2019-05-08 08:41:35 +00:00
{{ $ .i18n .Tr "repo.issues.opened_by_fake" $ createdStr ( .Issue .Poster .GetDisplayName | Escape ) | Safe }}
2015-12-07 22:30:52 +00:00
{{ end }}
·
{{ $ .i18n .Tr "repo.issues.num_comments" .Issue .NumComments }}
</span>
2015-09-01 23:26:39 +00:00
{{ end }}
2015-09-01 23:07:02 +00:00
<div class="ui divider"></div>
2015-12-07 22:30:52 +00:00
</div>