2019-11-19 19:33:42 +01:00
|
|
|
{{if .ctx.IsSigned}}
|
2021-01-20 02:08:21 +01:00
|
|
|
<div class="item action ui pointing custom dropdown top right context-dropdown">
|
2019-11-19 19:33:42 +01:00
|
|
|
<a class="context-menu">
|
2020-09-11 22:19:00 +02:00
|
|
|
{{svg "octicon-kebab-horizontal"}}
|
2019-11-19 19:33:42 +01:00
|
|
|
</a>
|
|
|
|
<div class="menu">
|
2021-01-21 14:51:17 +01:00
|
|
|
{{ $referenceUrl := "" }}
|
|
|
|
{{ if .issue }}
|
2021-11-16 19:18:25 +01:00
|
|
|
{{ $referenceUrl = Printf "%s#%s" .ctx.Issue.HTMLURL .item.HashTag }}
|
2021-01-21 14:51:17 +01:00
|
|
|
{{ else }}
|
2021-11-16 19:18:25 +01:00
|
|
|
{{ $referenceUrl = Printf "%s/files#%s" .ctx.Issue.HTMLURL .item.HashTag }}
|
2021-01-21 14:51:17 +01:00
|
|
|
{{ end }}
|
2021-05-30 21:15:57 +02:00
|
|
|
<div class="item context" data-clipboard-text="{{$referenceUrl}}">{{.ctx.i18n.Tr "repo.issues.context.copy_link"}}</div>
|
2019-11-19 19:33:42 +01:00
|
|
|
<div class="item context quote-reply {{if .diff}}quote-reply-diff{{end}}" data-target="{{.item.ID}}">{{.ctx.i18n.Tr "repo.issues.context.quote_reply"}}</div>
|
2021-01-23 04:58:22 +01:00
|
|
|
{{if not .ctx.UnitIssuesGlobalDisabled}}
|
2021-09-18 17:44:45 +02:00
|
|
|
<div class="item context reference-issue" data-target="{{.item.ID}}" data-modal="#reference-issue-modal" data-poster="{{.item.Poster.GetDisplayName}}" data-poster-username="{{.item.Poster.Name}}" data-reference="{{$referenceUrl}}">{{.ctx.i18n.Tr "repo.issues.context.reference_issue"}}</div>
|
2021-01-23 04:58:22 +01:00
|
|
|
{{end}}
|
2020-06-05 12:10:10 +02:00
|
|
|
{{if or .ctx.Permission.IsAdmin .IsCommentPoster .ctx.HasIssuesOrPullsWritePermission}}
|
2019-11-19 19:33:42 +01:00
|
|
|
<div class="divider"></div>
|
|
|
|
<div class="item context edit-content">{{.ctx.i18n.Tr "repo.issues.context.edit"}}</div>
|
|
|
|
{{if .delete}}
|
|
|
|
<div class="item context delete-comment" data-comment-id={{.item.HashTag}} data-url="{{.ctx.RepoLink}}/comments/{{.item.ID}}/delete" data-locale="{{.ctx.i18n.Tr "repo.issues.delete_comment_confirm"}}">{{.ctx.i18n.Tr "repo.issues.context.delete"}}</div>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|