2018-08-06 06:43:22 +02:00
|
|
|
{{range .comments}}
|
|
|
|
|
2023-09-25 14:42:40 +02:00
|
|
|
{{$createdStr:= TimeSinceUnix .CreatedUnix ctx.Locale}}
|
2018-08-06 06:43:22 +02:00
|
|
|
<div class="comment" id="{{.HashTag}}">
|
2022-08-31 17:58:54 +02:00
|
|
|
{{if .OriginalAuthor}}
|
2021-05-21 19:03:27 +02:00
|
|
|
<span class="avatar"><img src="{{AppSubUrl}}/assets/img/avatar_default.png"></span>
|
2020-01-23 18:28:15 +01:00
|
|
|
{{else}}
|
2023-08-10 05:19:39 +02:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2020-01-23 18:28:15 +01:00
|
|
|
{{end}}
|
2020-11-08 00:15:09 +01:00
|
|
|
<div class="content comment-container">
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="ui top attached header comment-header gt-df gt-ac gt-sb">
|
|
|
|
<div class="comment-header-left gt-df gt-ac">
|
2022-08-31 17:58:54 +02:00
|
|
|
{{if .OriginalAuthor}}
|
2023-05-22 01:37:32 +02:00
|
|
|
<span class="text black gt-font-semibold gt-mr-2">
|
2021-09-18 18:22:51 +02:00
|
|
|
{{svg (MigrationIcon $.root.Repository.GetOriginalURLHostname)}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{.OriginalAuthor}}
|
2020-10-31 23:15:11 +01:00
|
|
|
</span>
|
2023-05-28 03:34:18 +02:00
|
|
|
<span class="text grey muted-links">
|
2023-09-24 22:31:58 +02:00
|
|
|
{{ctx.Locale.Tr "repo.issues.commented_at" (.HashTag|Escape) $createdStr | Safe}}
|
2020-10-31 23:15:11 +01:00
|
|
|
</span>
|
|
|
|
<span class="text migrate">
|
|
|
|
{{if $.root.Repository.OriginalURL}}
|
2023-09-24 22:31:58 +02:00
|
|
|
({{ctx.Locale.Tr "repo.migrated_from" ($.root.Repository.OriginalURL | Escape) ($.root.Repository.GetOriginalURLHostname | Escape) | Safe}})
|
2020-10-31 23:15:11 +01:00
|
|
|
{{end}}
|
|
|
|
</span>
|
2020-01-23 18:28:15 +01:00
|
|
|
{{else}}
|
2023-05-28 03:34:18 +02:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 11:33:34 +02:00
|
|
|
{{template "shared/user/namelink" .Poster}}
|
2023-09-24 22:31:58 +02:00
|
|
|
{{ctx.Locale.Tr "repo.issues.commented_at" (.HashTag|Escape) $createdStr | Safe}}
|
2020-10-31 23:15:11 +01:00
|
|
|
</span>
|
2020-01-23 18:28:15 +01:00
|
|
|
{{end}}
|
2020-10-31 23:15:11 +01:00
|
|
|
</div>
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="comment-header-right actions gt-df gt-ac">
|
2023-06-21 18:08:12 +02:00
|
|
|
{{if .Invalidated}}
|
|
|
|
{{$referenceUrl := printf "%s#%s" $.root.Issue.Link .HashTag}}
|
2023-09-24 22:31:58 +02:00
|
|
|
<a href="{{AppSubUrl}}{{$referenceUrl}}" class="ui label basic small" data-tooltip-content="{{ctx.Locale.Tr "repo.issues.review.outdated_description"}}">
|
|
|
|
{{ctx.Locale.Tr "repo.issues.review.outdated"}}
|
2023-06-21 18:08:12 +02:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2020-10-31 23:15:11 +01:00
|
|
|
{{if and .Review}}
|
|
|
|
{{if eq .Review.Type 0}}
|
2023-09-24 22:31:58 +02:00
|
|
|
<div class="ui label basic small yellow pending-label" data-tooltip-content="{{ctx.Locale.Tr "repo.issues.review.pending.tooltip" (ctx.Locale.Tr "repo.diff.review") (ctx.Locale.Tr "repo.diff.review.approve") (ctx.Locale.Tr "repo.diff.review.comment") (ctx.Locale.Tr "repo.diff.review.reject")}}">
|
|
|
|
{{ctx.Locale.Tr "repo.issues.review.pending"}}
|
2020-10-31 23:15:11 +01:00
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<div class="ui label basic small">
|
2023-09-24 22:31:58 +02:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.review"}}
|
2020-10-31 23:15:11 +01:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2018-08-06 06:43:22 +02:00
|
|
|
{{end}}
|
2023-04-08 15:15:22 +02:00
|
|
|
{{template "repo/issue/view_content/add_reaction" dict "ctxData" $.root "ActionURL" (printf "%s/comments/%d/reactions" $.root.RepoLink .ID)}}
|
2023-04-07 16:39:08 +02:00
|
|
|
{{template "repo/issue/view_content/context_menu" dict "ctxData" $.root "item" . "delete" true "issue" false "diff" true "IsCommentPoster" (and $.root.IsSigned (eq $.root.SignedUserID .PosterID))}}
|
2018-08-06 06:43:22 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-05 20:34:04 +01:00
|
|
|
<div class="ui attached segment comment-body">
|
2021-05-23 16:14:03 +02:00
|
|
|
<div class="render-content markup" {{if or $.Permission.IsAdmin $.HasIssuesOrPullsWritePermission (and $.root.IsSigned (eq $.root.SignedUserID .PosterID))}}data-can-edit="true"{{end}}>
|
2018-08-06 06:43:22 +02:00
|
|
|
{{if .RenderedContent}}
|
|
|
|
{{.RenderedContent|Str2html}}
|
|
|
|
{{else}}
|
2023-09-24 22:31:58 +02:00
|
|
|
<span class="no-content">{{ctx.Locale.Tr "repo.issues.no_content"}}</span>
|
2018-08-06 06:43:22 +02:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2023-02-19 05:06:14 +01:00
|
|
|
<div id="issuecomment-{{.ID}}-raw" class="raw-content gt-hidden">{{.Content}}</div>
|
2023-04-20 08:39:44 +02:00
|
|
|
<div class="edit-content-zone gt-hidden" data-update-url="{{$.root.RepoLink}}/comments/{{.ID}}" data-context="{{$.root.RepoLink}}"></div>
|
2018-08-06 06:43:22 +02:00
|
|
|
</div>
|
|
|
|
{{$reactions := .Reactions.GroupByType}}
|
|
|
|
{{if $reactions}}
|
2023-04-08 15:15:22 +02:00
|
|
|
{{template "repo/issue/view_content/reactions" dict "ctxData" $.root "ActionURL" (printf "%s/comments/%d/reactions" $.root.RepoLink .ID) "Reactions" $reactions}}
|
2018-08-06 06:43:22 +02:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|