2018-08-05 22:43:22 -06:00
|
|
|
{{range .comments}}
|
|
|
|
|
2023-09-25 06:42:40 -06:00
|
|
|
{{$createdStr:= TimeSinceUnix .CreatedUnix ctx.Locale}}
|
2018-08-05 22:43:22 -06:00
|
|
|
<div class="comment" id="{{.HashTag}}">
|
2022-08-31 09:58:54 -06:00
|
|
|
{{if .OriginalAuthor}}
|
2024-02-02 03:01:11 -07:00
|
|
|
<span class="avatar">{{ctx.AvatarUtils.Avatar nil}}</span>
|
2020-01-23 10:28:15 -07:00
|
|
|
{{else}}
|
2023-08-09 21:19:39 -06:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2020-01-23 10:28:15 -07:00
|
|
|
{{end}}
|
2020-11-07 16:15:09 -07:00
|
|
|
<div class="content comment-container">
|
2023-02-13 10:59:59 -07: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 09:58:54 -06:00
|
|
|
{{if .OriginalAuthor}}
|
2023-05-21 17:37:32 -06:00
|
|
|
<span class="text black gt-font-semibold gt-mr-2">
|
2021-09-18 10:22:51 -06:00
|
|
|
{{svg (MigrationIcon $.root.Repository.GetOriginalURLHostname)}}
|
2022-08-31 09:58:54 -06:00
|
|
|
{{.OriginalAuthor}}
|
2020-10-31 16:15:11 -06:00
|
|
|
</span>
|
2023-05-27 19:34:18 -06:00
|
|
|
<span class="text grey muted-links">
|
2024-02-25 07:02:20 -07:00
|
|
|
{{ctx.Locale.Tr "repo.issues.commented_at" .HashTag $createdStr}}
|
2020-10-31 16:15:11 -06:00
|
|
|
</span>
|
|
|
|
<span class="text migrate">
|
|
|
|
{{if $.root.Repository.OriginalURL}}
|
2024-02-25 07:02:20 -07:00
|
|
|
({{ctx.Locale.Tr "repo.migrated_from" $.root.Repository.OriginalURL $.root.Repository.GetOriginalURLHostname}})
|
2020-10-31 16:15:11 -06:00
|
|
|
{{end}}
|
|
|
|
</span>
|
2020-01-23 10:28:15 -07:00
|
|
|
{{else}}
|
2023-05-27 19:34:18 -06:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 03:33:34 -06:00
|
|
|
{{template "shared/user/namelink" .Poster}}
|
2024-02-25 07:02:20 -07:00
|
|
|
{{ctx.Locale.Tr "repo.issues.commented_at" .HashTag $createdStr}}
|
2020-10-31 16:15:11 -06:00
|
|
|
</span>
|
2020-01-23 10:28:15 -07:00
|
|
|
{{end}}
|
2020-10-31 16:15:11 -06:00
|
|
|
</div>
|
2023-02-13 10:59:59 -07:00
|
|
|
<div class="comment-header-right actions gt-df gt-ac">
|
2023-06-21 10:08:12 -06:00
|
|
|
{{if .Invalidated}}
|
|
|
|
{{$referenceUrl := printf "%s#%s" $.root.Issue.Link .HashTag}}
|
2024-03-02 05:02:34 -07:00
|
|
|
<a href="{{$referenceUrl}}" class="ui label basic small" data-tooltip-content="{{ctx.Locale.Tr "repo.issues.review.outdated_description"}}">
|
2023-09-24 14:31:58 -06:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.outdated"}}
|
2023-06-21 10:08:12 -06:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2020-10-31 16:15:11 -06:00
|
|
|
{{if and .Review}}
|
|
|
|
{{if eq .Review.Type 0}}
|
2023-09-24 14:31:58 -06: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 16:15:11 -06:00
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<div class="ui label basic small">
|
2023-09-24 14:31:58 -06:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.review"}}
|
2020-10-31 16:15:11 -06:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2018-08-05 22:43:22 -06:00
|
|
|
{{end}}
|
2023-04-08 07:15:22 -06:00
|
|
|
{{template "repo/issue/view_content/add_reaction" dict "ctxData" $.root "ActionURL" (printf "%s/comments/%d/reactions" $.root.RepoLink .ID)}}
|
2023-04-07 08:39:08 -06: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-05 22:43:22 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-05 12:34:04 -07:00
|
|
|
<div class="ui attached segment comment-body">
|
2021-05-23 08:14:03 -06: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-05 22:43:22 -06:00
|
|
|
{{if .RenderedContent}}
|
2024-03-01 00:11:51 -07:00
|
|
|
{{.RenderedContent}}
|
2018-08-05 22:43:22 -06:00
|
|
|
{{else}}
|
2023-09-24 14:31:58 -06:00
|
|
|
<span class="no-content">{{ctx.Locale.Tr "repo.issues.no_content"}}</span>
|
2018-08-05 22:43:22 -06:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2023-02-18 21:06:14 -07:00
|
|
|
<div id="issuecomment-{{.ID}}-raw" class="raw-content gt-hidden">{{.Content}}</div>
|
2024-02-24 23:00:55 -07:00
|
|
|
<div class="edit-content-zone gt-hidden" data-update-url="{{$.root.RepoLink}}/comments/{{.ID}}" data-context="{{$.root.RepoLink}}" data-attachment-url="{{$.root.RepoLink}}/comments/{{.ID}}/attachments"></div>
|
|
|
|
{{if .Attachments}}
|
2024-03-01 03:56:29 -07:00
|
|
|
{{template "repo/issue/view_content/attachments" dict "ctxData" $ "Attachments" .Attachments "RenderedContent" .RenderedContent}}
|
2024-02-24 23:00:55 -07:00
|
|
|
{{end}}
|
2018-08-05 22:43:22 -06:00
|
|
|
</div>
|
|
|
|
{{$reactions := .Reactions.GroupByType}}
|
|
|
|
{{if $reactions}}
|
2023-04-08 07:15:22 -06:00
|
|
|
{{template "repo/issue/view_content/reactions" dict "ctxData" $.root "ActionURL" (printf "%s/comments/%d/reactions" $.root.RepoLink .ID) "Reactions" $reactions}}
|
2018-08-05 22:43:22 -06:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|