2022-08-31 15:58:54 +00:00
|
|
|
{{template "base/alert"}}
|
2017-03-17 05:57:43 +00:00
|
|
|
{{range .Issue.Comments}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if call $.ShouldShowCommentType .Type}}
|
2023-09-25 12:42:40 +00:00
|
|
|
{{$createdStr:= TimeSinceUnix .CreatedUnix ctx.Locale}}
|
2017-03-17 05:57:43 +00:00
|
|
|
|
2022-01-21 17:59:26 +00:00
|
|
|
<!-- 0 = COMMENT, 1 = REOPEN, 2 = CLOSE, 3 = ISSUE_REF, 4 = COMMIT_REF,
|
2023-11-07 18:45:06 +00:00
|
|
|
5 = COMMENT_REF, 6 = PULL_REF, 7 = COMMENT_LABEL, 8 = MILESTONE_CHANGE,
|
|
|
|
9 = ASSIGNEES_CHANGE, 10 = TITLE_CHANGE, 11 = DELETE_BRANCH, 12 = START_TRACKING,
|
2022-01-21 17:59:26 +00:00
|
|
|
13 = STOP_TRACKING, 14 = ADD_TIME_MANUAL, 16 = ADDED_DEADLINE, 17 = MODIFIED_DEADLINE,
|
|
|
|
18 = REMOVED_DEADLINE, 19 = ADD_DEPENDENCY, 20 = REMOVE_DEPENDENCY, 21 = CODE,
|
|
|
|
22 = REVIEW, 23 = ISSUE_LOCKED, 24 = ISSUE_UNLOCKED, 25 = TARGET_BRANCH_CHANGED,
|
|
|
|
26 = DELETE_TIME_MANUAL, 27 = REVIEW_REQUEST, 28 = MERGE_PULL_REQUEST,
|
|
|
|
29 = PULL_PUSH_EVENT, 30 = PROJECT_CHANGED, 31 = PROJECT_BOARD_CHANGED
|
2022-05-07 17:05:52 +00:00
|
|
|
32 = DISMISSED_REVIEW, 33 = COMMENT_TYPE_CHANGE_ISSUE_REF, 34 = PR_SCHEDULE_TO_AUTO_MERGE,
|
2023-05-25 13:17:19 +00:00
|
|
|
35 = CANCEL_SCHEDULED_AUTO_MERGE_PR, 36 = PIN_ISSUE, 37 = UNPIN_ISSUE -->
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if eq .Type 0}}
|
|
|
|
<div class="timeline-item comment" id="{{.HashTag}}">
|
2022-08-31 15:58:54 +00:00
|
|
|
{{if .OriginalAuthor}}
|
2023-05-14 14:15:59 +00:00
|
|
|
<span class="timeline-avatar">
|
2024-02-02 10:01:11 +00:00
|
|
|
{{ctx.AvatarUtils.Avatar nil 40}}
|
2023-05-14 14:15:59 +00:00
|
|
|
</span>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else}}
|
2022-09-03 09:33:34 +00:00
|
|
|
<a class="timeline-avatar"{{if gt .Poster.ID 0}} href="{{.Poster.HomeLink}}"{{end}}>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{ctx.AvatarUtils.Avatar .Poster 40}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
<div class="content comment-container">
|
2024-03-22 19:51:29 +00:00
|
|
|
<div class="ui top attached header comment-header tw-flex tw-items-center tw-justify-between" role="heading" aria-level="3">
|
|
|
|
<div class="comment-header-left tw-flex tw-items-center">
|
2022-08-31 15:58:54 +00:00
|
|
|
{{if .OriginalAuthor}}
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00:00
|
|
|
<span class="text black tw-font-semibold tw-mr-1">
|
2022-01-21 17:59:26 +00:00
|
|
|
{{svg (MigrationIcon $.Repository.GetOriginalURLHostname)}}
|
2022-08-31 15:58:54 +00:00
|
|
|
{{.OriginalAuthor}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.commented_at" .HashTag $createdStr}} {{if $.Repository.OriginalURL}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
<span class="text migrate">
|
2024-02-25 14:02:20 +00:00
|
|
|
({{ctx.Locale.Tr "repo.migrated_from" $.Repository.OriginalURL $.Repository.GetOriginalURLHostname}}){{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
{{else}}
|
Improve UI on mobile (#19546)
Start making the mobile experience not painful and be actually usable. This contains a few smaller changes to enhance this experience.
- Submit buttons on the review forms aren't columns anymore and are now allowed to be displayed on one row.
- The label/milestone & New Issue buttons were given each own row even tough, there's enough place to do it one the same row. This commit fixes that.
- The issues+Pull tab on repo's has a third item besides the label/milestone & New Issue buttons, the search bar. On desktop there's enough place to do this on one row, for mobile it isn't, currently it was using for each item a new row. This commits fixes that by only giving the searchbar a new row and have the other two buttons on the same row.
- The notification table will now be show a scrollbar instead of overflow.
- The repo buttons(Watch, Star, Fork) on mobile were showing quite big and the SVG wasn't even displayed on the same line, if the count of those numbers were too high it would even overflow. This commit removes the SVG, as there isn't any place to show them on the same row and allows them to have a new row if the counts of those buttons are high.
- The admin page can show you a lot of interesting information, on mobile the System Status + Configuration weren't properly displayed as the margin's were too high. This commit fixes that by reducing the margin to a number that makes sense on mobile.
- Fixes to not overflow the tables but instead force them to be scrollable.
- When viewing a issue or pull request, the comments aren't full-width but instead 80% and aligned to right, on mobile this is a annoyance as there isn't much width to begin with. This commits fixes that by forcing full-width and removing the avatars on the left side and instead including them inline in the comment header.
2022-05-01 16:11:21 +00:00
|
|
|
{{if gt .Poster.ID 0}}
|
|
|
|
<a class="inline-timeline-avatar" href="{{.Poster.HomeLink}}">
|
2023-08-10 03:19:39 +00:00
|
|
|
{{ctx.AvatarUtils.Avatar .Poster 24}}
|
Improve UI on mobile (#19546)
Start making the mobile experience not painful and be actually usable. This contains a few smaller changes to enhance this experience.
- Submit buttons on the review forms aren't columns anymore and are now allowed to be displayed on one row.
- The label/milestone & New Issue buttons were given each own row even tough, there's enough place to do it one the same row. This commit fixes that.
- The issues+Pull tab on repo's has a third item besides the label/milestone & New Issue buttons, the search bar. On desktop there's enough place to do this on one row, for mobile it isn't, currently it was using for each item a new row. This commits fixes that by only giving the searchbar a new row and have the other two buttons on the same row.
- The notification table will now be show a scrollbar instead of overflow.
- The repo buttons(Watch, Star, Fork) on mobile were showing quite big and the SVG wasn't even displayed on the same line, if the count of those numbers were too high it would even overflow. This commit removes the SVG, as there isn't any place to show them on the same row and allows them to have a new row if the counts of those buttons are high.
- The admin page can show you a lot of interesting information, on mobile the System Status + Configuration weren't properly displayed as the margin's were too high. This commit fixes that by reducing the margin to a number that makes sense on mobile.
- Fixes to not overflow the tables but instead force them to be scrollable.
- When viewing a issue or pull request, the comments aren't full-width but instead 80% and aligned to right, on mobile this is a annoyance as there isn't much width to begin with. This commits fixes that by forcing full-width and removing the avatars on the left side and instead including them inline in the comment header.
2022-05-01 16:11:21 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-11-19 04:02:30 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.commented_at" .HashTag $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2024-03-22 19:51:29 +00:00
|
|
|
<div class="comment-header-right actions tw-flex tw-items-center">
|
2024-06-24 15:18:27 +00:00
|
|
|
{{template "repo/issue/view_content/show_role" dict "ShowRole" .ShowRole "IsPull" .Issue.IsPull}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if not $.Repository.IsArchived}}
|
2023-04-08 13:15:22 +00:00
|
|
|
{{template "repo/issue/view_content/add_reaction" dict "ctxData" $ "ActionURL" (printf "%s/comments/%d/reactions" $.RepoLink .ID)}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
2023-09-23 11:31:54 +00:00
|
|
|
{{template "repo/issue/view_content/context_menu" dict "ctxData" $ "item" . "delete" true "issue" true "diff" false "IsCommentPoster" (and $.IsSigned (eq $.SignedUserID .PosterID))}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
2020-10-31 13:17:52 +00:00
|
|
|
</div>
|
2023-02-23 02:24:24 +00:00
|
|
|
<div class="ui attached segment comment-body" role="article">
|
2022-01-21 17:59:26 +00:00
|
|
|
<div class="render-content markup" {{if or $.Permission.IsAdmin $.HasIssuesOrPullsWritePermission (and $.IsSigned (eq $.SignedUserID .PosterID))}}data-can-edit="true"{{end}}>
|
|
|
|
{{if .RenderedContent}}
|
2024-03-01 07:11:51 +00:00
|
|
|
{{.RenderedContent}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<span class="no-content">{{ctx.Locale.Tr "repo.issues.no_content"}}</span>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2024-03-24 18:23:38 +00:00
|
|
|
<div id="issuecomment-{{.ID}}-raw" class="raw-content tw-hidden">{{.Content}}</div>
|
2024-05-27 15:34:18 +00:00
|
|
|
<div class="edit-content-zone tw-hidden" data-update-url="{{$.RepoLink}}/comments/{{.ID}}" data-content-version="{{.ContentVersion}}" data-context="{{$.RepoLink}}" data-attachment-url="{{$.RepoLink}}/comments/{{.ID}}/attachments"></div>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if .Attachments}}
|
2024-03-05 04:59:16 +00:00
|
|
|
{{template "repo/issue/view_content/attachments" dict "Attachments" .Attachments "RenderedContent" .RenderedContent}}
|
2017-03-17 05:57:43 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{$reactions := .Reactions.GroupByType}}
|
|
|
|
{{if $reactions}}
|
2023-05-28 01:34:18 +00:00
|
|
|
{{template "repo/issue/view_content/reactions" dict "ctxData" $ "ActionURL" (printf "%s/comments/%d/reactions" $.RepoLink .ID) "Reactions" $reactions}}
|
2021-04-11 03:46:37 +00:00
|
|
|
{{end}}
|
2017-03-17 05:57:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else if eq .Type 1}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
2024-03-08 21:02:05 +00:00
|
|
|
<span class="badge tw-bg-green tw-text-white">{{svg "octicon-dot-fill"}}</span>
|
2024-02-26 04:08:21 +00:00
|
|
|
{{if not .OriginalAuthor}}
|
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
|
|
|
{{end}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2024-02-26 04:08:21 +00:00
|
|
|
{{template "repo/issue/view_content/comments_authorlink" dict "ctxData" $ "comment" .}}
|
2022-08-31 15:58:54 +00:00
|
|
|
{{if .Issue.IsPull}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.pulls.reopened_at" .EventTag $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.reopened_at" .EventTag $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
|
|
|
</span>
|
2019-09-20 05:45:38 +00:00
|
|
|
</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else if eq .Type 2}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
2024-03-08 21:02:05 +00:00
|
|
|
<span class="badge tw-bg-red tw-text-white">{{svg "octicon-circle-slash"}}</span>
|
2024-02-26 04:08:21 +00:00
|
|
|
{{if not .OriginalAuthor}}
|
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
|
|
|
{{end}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2024-02-26 04:08:21 +00:00
|
|
|
{{template "repo/issue/view_content/comments_authorlink" dict "ctxData" $ "comment" .}}
|
2022-08-31 15:58:54 +00:00
|
|
|
{{if .Issue.IsPull}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.pulls.closed_at" .EventTag $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.closed_at" .EventTag $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
|
|
|
</span>
|
2017-03-17 05:57:43 +00:00
|
|
|
</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else if eq .Type 28}}
|
2020-04-10 22:01:41 +00:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
2024-03-08 21:02:05 +00:00
|
|
|
<span class="badge tw-bg-purple tw-text-white">{{svg "octicon-git-merge"}}</span>
|
2024-02-26 04:08:21 +00:00
|
|
|
{{if not .OriginalAuthor}}
|
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
|
|
|
{{end}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2024-02-26 04:08:21 +00:00
|
|
|
{{template "repo/issue/view_content/comments_authorlink" dict "ctxData" $ "comment" .}}
|
2023-02-06 18:09:18 +00:00
|
|
|
{{$link := printf "%s/commit/%s" $.Repository.Link ($.Issue.PullRequest.MergedCommitID|PathEscape)}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if eq $.Issue.PullRequest.Status 3}}
|
2024-02-25 10:45:56 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.comment_manually_pull_merged_at" (HTMLFormat `<a class="ui sha" href="%[1]s"><b>%[2]s</b></a>` $link (ShortSha $.Issue.PullRequest.MergedCommitID)) (HTMLFormat "<b>%[1]s</b>" $.BaseTarget) $createdStr}}
|
2020-10-25 21:49:48 +00:00
|
|
|
{{else}}
|
2024-02-25 10:45:56 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.comment_pull_merged_at" (HTMLFormat `<a class="ui sha" href="%[1]s"><b>%[2]s</b></a>` $link (ShortSha $.Issue.PullRequest.MergedCommitID)) (HTMLFormat "<b>%[1]s</b>" $.BaseTarget) $createdStr}}
|
2020-10-25 21:49:48 +00:00
|
|
|
{{end}}
|
2020-04-19 00:15:07 +00:00
|
|
|
</span>
|
2017-03-17 05:57:43 +00:00
|
|
|
</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else if eq .Type 3 5 6}}
|
2022-08-31 15:58:54 +00:00
|
|
|
{{$refFrom:= ""}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if ne .RefRepoID .Issue.RepoID}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{$refFrom = ctx.Locale.Tr "repo.issues.ref_from" .RefRepo.FullName}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
2022-08-31 15:58:54 +00:00
|
|
|
{{$refTr := "repo.issues.ref_issue_from"}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if .Issue.IsPull}}
|
2022-08-31 15:58:54 +00:00
|
|
|
{{$refTr = "repo.issues.ref_pull_from"}}
|
|
|
|
{{else if eq .RefAction 1}}
|
|
|
|
{{$refTr = "repo.issues.ref_closing_from"}}
|
|
|
|
{{else if eq .RefAction 2}}
|
|
|
|
{{$refTr = "repo.issues.ref_reopening_from"}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
2023-09-25 12:42:40 +00:00
|
|
|
{{$createdStr:= TimeSinceUnix .CreatedUnix ctx.Locale}}
|
2022-01-21 17:59:26 +00:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-bookmark"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if eq .RefAction 3}}<del>{{end}}
|
2022-11-19 04:02:30 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr $refTr .EventTag $createdStr (.RefCommentLink ctx) $refFrom}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
{{if eq .RefAction 3}}</del>{{end}}
|
|
|
|
|
2024-03-14 19:01:16 +00:00
|
|
|
<div class="detail flex-text-block">
|
2023-09-29 12:12:54 +00:00
|
|
|
<span class="text grey muted-links"><a href="{{.RefIssueLink ctx}}"><b>{{.RefIssueTitle ctx}}</b> {{.RefIssueIdent ctx}}</a></span>
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 4}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-bookmark"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-01-28 19:17:46 +00:00
|
|
|
{{if .Issue.IsPull}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.pulls.commit_ref_at" .EventTag $createdStr}}
|
2024-01-28 19:17:46 +00:00
|
|
|
{{else}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.commit_ref_at" .EventTag $createdStr}}
|
2024-01-28 19:17:46 +00:00
|
|
|
{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
2024-03-14 19:01:16 +00:00
|
|
|
<div class="detail flex-text-block">
|
2022-01-21 17:59:26 +00:00
|
|
|
{{svg "octicon-git-commit"}}
|
2024-03-01 10:16:19 +00:00
|
|
|
<span class="text grey muted-links">{{.Content | SanitizeHTML}}</span>
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 7}}
|
|
|
|
{{if or .AddedLabels .RemovedLabels}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-tag"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if and .AddedLabels (not .RemovedLabels)}}
|
2024-04-12 12:31:44 +00:00
|
|
|
{{ctx.Locale.TrN (len .AddedLabels) "repo.issues.add_label" "repo.issues.add_labels" (RenderLabels $.Context ctx.Locale .AddedLabels $.RepoLink .Issue.IsPull) $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else if and (not .AddedLabels) .RemovedLabels}}
|
2024-04-12 12:31:44 +00:00
|
|
|
{{ctx.Locale.TrN (len .RemovedLabels) "repo.issues.remove_label" "repo.issues.remove_labels" (RenderLabels $.Context ctx.Locale .RemovedLabels $.RepoLink .Issue.IsPull) $createdStr}}
|
2018-05-09 16:29:04 +00:00
|
|
|
{{else}}
|
2024-04-12 12:31:44 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.add_remove_labels" (RenderLabels $.Context ctx.Locale .AddedLabels $.RepoLink .Issue.IsPull) (RenderLabels $.Context ctx.Locale .RemovedLabels $.RepoLink .Issue.IsPull) $createdStr}}
|
2018-05-09 16:29:04 +00:00
|
|
|
{{end}}
|
|
|
|
</span>
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
2018-05-09 16:29:04 +00:00
|
|
|
{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else if eq .Type 8}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-milestone"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{if gt .OldMilestoneID 0}}{{if gt .MilestoneID 0}}{{ctx.Locale.Tr "repo.issues.change_milestone_at" .OldMilestone.Name .Milestone.Name $createdStr}}{{else}}{{ctx.Locale.Tr "repo.issues.remove_milestone_at" .OldMilestone.Name $createdStr}}{{end}}{{else if gt .MilestoneID 0}}{{ctx.Locale.Tr "repo.issues.add_milestone_at" .Milestone.Name $createdStr}}{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
2017-09-12 06:48:13 +00:00
|
|
|
</div>
|
2023-11-07 18:45:06 +00:00
|
|
|
{{else if and (eq .Type 9) (gt .AssigneeID 0)}}
|
2022-01-21 17:59:26 +00:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-person"}}</span>
|
2023-11-07 18:45:06 +00:00
|
|
|
{{if .RemovedAssignee}}
|
|
|
|
{{template "shared/user/avatarlink" dict "user" .Assignee}}
|
|
|
|
<span class="text grey muted-links">
|
|
|
|
{{template "shared/user/authorlink" .Assignee}}
|
|
|
|
{{if eq .Poster.ID .Assignee.ID}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.remove_self_assignment" $createdStr}}
|
2023-11-07 18:45:06 +00:00
|
|
|
{{else}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.remove_assignee_at" .Poster.GetDisplayName $createdStr}}
|
2023-11-07 18:45:06 +00:00
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
{{else}}
|
|
|
|
{{template "shared/user/avatarlink" dict "user" .Assignee}}
|
|
|
|
<span class="text grey muted-links">
|
|
|
|
{{template "shared/user/authorlink" .Assignee}}
|
|
|
|
{{if eq .Poster.ID .AssigneeID}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.self_assign_at" $createdStr}}
|
2023-11-07 18:45:06 +00:00
|
|
|
{{else}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.add_assignee_at" .Poster.GetDisplayName $createdStr}}
|
2023-11-07 18:45:06 +00:00
|
|
|
{{end}}
|
|
|
|
</span>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 10}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-pencil"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.change_title_at" (.OldTitle|RenderEmoji $.Context) (.NewTitle|RenderEmoji $.Context) $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 11}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-git-branch"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.delete_branch_at" .OldRef $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 12}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.start_tracking_history" $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 13}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.stop_tracking_history" $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
2023-04-07 14:39:08 +00:00
|
|
|
{{template "repo/issue/view_content/comments_delete_time" dict "ctxData" $ "comment" .}}
|
2024-03-14 19:01:16 +00:00
|
|
|
<div class="detail flex-text-block">
|
2022-01-21 17:59:26 +00:00
|
|
|
{{svg "octicon-clock"}}
|
2023-06-23 12:12:39 +00:00
|
|
|
{{if .RenderedContent}}
|
|
|
|
{{/* compatibility with time comments made before v1.21 */}}
|
|
|
|
<span class="text grey muted-links">{{.RenderedContent}}</span>
|
|
|
|
{{else}}
|
|
|
|
<span class="text grey muted-links">{{.Content|Sec2Time}}</span>
|
|
|
|
{{end}}
|
2020-01-21 10:18:52 +00:00
|
|
|
</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
|
|
|
{{else if eq .Type 14}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.add_time_history" $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
2023-04-07 14:39:08 +00:00
|
|
|
{{template "repo/issue/view_content/comments_delete_time" dict "ctxData" $ "comment" .}}
|
2024-03-14 19:01:16 +00:00
|
|
|
<div class="detail flex-text-block">
|
2022-01-21 17:59:26 +00:00
|
|
|
{{svg "octicon-clock"}}
|
2023-06-23 12:12:39 +00:00
|
|
|
{{if .RenderedContent}}
|
|
|
|
{{/* compatibility with time comments made before v1.21 */}}
|
|
|
|
<span class="text grey muted-links">{{.RenderedContent}}</span>
|
|
|
|
{{else}}
|
|
|
|
<span class="text grey muted-links">{{.Content|Sec2Time}}</span>
|
|
|
|
{{end}}
|
2020-01-21 10:18:52 +00:00
|
|
|
</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
|
|
|
{{else if eq .Type 15}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.cancel_tracking_history" $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 16}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.due_date_added" (DateTime "long" .Content) $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 17}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2023-04-29 12:02:29 +00:00
|
|
|
{{$parsedDeadline := StringUtils.Split .Content "|"}}
|
|
|
|
{{if eq (len $parsedDeadline) 2}}
|
|
|
|
{{$from := DateTime "long" (index $parsedDeadline 1)}}
|
|
|
|
{{$to := DateTime "long" (index $parsedDeadline 0)}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.due_date_modified" $to $from $createdStr}}
|
2023-04-29 12:02:29 +00:00
|
|
|
{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 18}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.due_date_remove" (DateTime "long" .Content) $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 19}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-package-dependents"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.dependency.added_dependency" $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
{{if .DependentIssue}}
|
2024-03-14 19:01:16 +00:00
|
|
|
<div class="detail flex-text-block">
|
2022-01-21 17:59:26 +00:00
|
|
|
{{svg "octicon-plus"}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2023-02-06 18:09:18 +00:00
|
|
|
<a href="{{.DependentIssue.Link}}">
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if eq .DependentIssue.RepoID .Issue.RepoID}}
|
|
|
|
#{{.DependentIssue.Index}} {{.DependentIssue.Title}}
|
|
|
|
{{else}}
|
|
|
|
{{.DependentIssue.Repo.FullName}}#{{.DependentIssue.Index}} - {{.DependentIssue.Title}}
|
|
|
|
{{end}}
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</div>
|
2020-01-23 17:28:15 +00:00
|
|
|
{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
|
|
|
{{else if eq .Type 20}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-package-dependents"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.dependency.removed_dependency" $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
{{if .DependentIssue}}
|
2024-03-14 19:01:16 +00:00
|
|
|
<div class="detail flex-text-block">
|
|
|
|
{{svg "octicon-trash"}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2023-02-06 18:09:18 +00:00
|
|
|
<a href="{{.DependentIssue.Link}}">
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if eq .DependentIssue.RepoID .Issue.RepoID}}
|
|
|
|
#{{.DependentIssue.Index}} {{.DependentIssue.Title}}
|
|
|
|
{{else}}
|
|
|
|
{{.DependentIssue.Repo.FullName}}#{{.DependentIssue.Index}} - {{.DependentIssue.Title}}
|
|
|
|
{{end}}
|
|
|
|
</a>
|
2021-09-18 16:22:51 +00:00
|
|
|
</span>
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 22}}
|
2023-10-14 21:13:59 +00:00
|
|
|
<div class="timeline-item-group" id="{{.HashTag}}">
|
2022-01-21 17:59:26 +00:00
|
|
|
<div class="timeline-item event">
|
2024-02-24 07:49:16 +00:00
|
|
|
{{if not .OriginalAuthor}}
|
2024-03-20 14:05:34 +00:00
|
|
|
{{/* Some timeline avatars need a offset to correctly align with their speech bubble.
|
|
|
|
The condition depends on whether the comment has contents/attachments or reviews */}}
|
|
|
|
<a class="timeline-avatar{{if or .Content .Attachments (and .Review .Review.CodeComments)}} timeline-avatar-offset{{end}}"{{if gt .Poster.ID 0}} href="{{.Poster.HomeLink}}"{{end}}>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{ctx.AvatarUtils.Avatar .Poster 40}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</a>
|
2020-04-10 22:01:41 +00:00
|
|
|
{{end}}
|
2024-03-08 21:02:05 +00:00
|
|
|
<span class="badge{{if eq .Review.Type 1}} tw-bg-green tw-text-white{{else if eq .Review.Type 3}} tw-bg-red tw-text-white{{end}}">{{svg (printf "octicon-%s" .Review.Type.Icon)}}</span>
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2024-02-26 04:08:21 +00:00
|
|
|
{{template "repo/issue/view_content/comments_authorlink" dict "ctxData" $ "comment" .}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if eq .Review.Type 1}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.approve" $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else if eq .Review.Type 2}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.comment" $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else if eq .Review.Type 3}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.reject" $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.comment" $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
|
|
|
{{if .Review.Dismissed}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<div class="ui small label">{{ctx.Locale.Tr "repo.issues.review.dismissed_label"}}</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
</div>
|
2023-02-21 16:08:20 +00:00
|
|
|
{{if or .Content .Attachments}}
|
2023-10-14 21:13:59 +00:00
|
|
|
<div class="timeline-item comment">
|
2022-01-21 17:59:26 +00:00
|
|
|
<div class="content comment-container">
|
2024-03-22 19:51:29 +00:00
|
|
|
<div class="ui top attached header comment-header tw-flex tw-items-center tw-justify-between">
|
|
|
|
<div class="comment-header-left tw-flex tw-items-center">
|
2023-05-10 09:16:44 +00:00
|
|
|
{{if gt .Poster.ID 0}}
|
|
|
|
<a class="inline-timeline-avatar" href="{{.Poster.HomeLink}}">
|
2023-08-10 03:19:39 +00:00
|
|
|
{{ctx.AvatarUtils.Avatar .Poster 24}}
|
2023-05-10 09:16:44 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-08-31 15:58:54 +00:00
|
|
|
{{if .OriginalAuthor}}
|
2024-03-23 18:45:11 +00:00
|
|
|
<span class="text black tw-font-semibold">
|
2022-01-21 17:59:26 +00:00
|
|
|
{{svg (MigrationIcon $.Repository.GetOriginalURLHostname)}}
|
2022-08-31 15:58:54 +00:00
|
|
|
{{.OriginalAuthor}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links"> {{if $.Repository.OriginalURL}}</span>
|
2024-02-25 14:02:20 +00:00
|
|
|
<span class="text migrate">({{ctx.Locale.Tr "repo.migrated_from" $.Repository.OriginalURL $.Repository.GetOriginalURLHostname}}){{end}}</span>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else}}
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
2020-04-10 22:01:41 +00:00
|
|
|
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.left_comment"}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
2024-03-22 19:51:29 +00:00
|
|
|
<div class="comment-header-right actions tw-flex tw-items-center">
|
2024-06-24 15:18:27 +00:00
|
|
|
{{template "repo/issue/view_content/show_role" dict "ShowRole" .ShowRole "IsPull" .Issue.IsPull}}
|
2023-08-22 05:30:33 +00:00
|
|
|
{{if not $.Repository.IsArchived}}
|
|
|
|
{{template "repo/issue/view_content/add_reaction" dict "ctxData" $ "ActionURL" (printf "%s/comments/%d/reactions" $.RepoLink .ID)}}
|
|
|
|
{{template "repo/issue/view_content/context_menu" dict "ctxData" $ "item" . "delete" false "issue" true "diff" false "IsCommentPoster" (and $.IsSigned (eq $.SignedUserID .PosterID))}}
|
|
|
|
{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
2022-01-18 17:28:38 +00:00
|
|
|
</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
<div class="ui attached segment comment-body">
|
2022-07-26 13:11:39 +00:00
|
|
|
<div class="render-content markup" {{if or $.Permission.IsAdmin $.HasIssuesOrPullsWritePermission (and $.IsSigned (eq $.SignedUserID .PosterID))}}data-can-edit="true"{{end}}>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if .RenderedContent}}
|
2024-03-01 07:11:51 +00:00
|
|
|
{{.RenderedContent}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<span class="no-content">{{ctx.Locale.Tr "repo.issues.no_content"}}</span>
|
2022-01-18 17:28:38 +00:00
|
|
|
{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
2024-03-24 18:23:38 +00:00
|
|
|
<div id="issuecomment-{{.ID}}-raw" class="raw-content tw-hidden">{{.Content}}</div>
|
2024-05-27 15:34:18 +00:00
|
|
|
<div class="edit-content-zone tw-hidden" data-update-url="{{$.RepoLink}}/comments/{{.ID}}" data-content-version="{{.ContentVersion}}" data-context="{{$.RepoLink}}" data-attachment-url="{{$.RepoLink}}/comments/{{.ID}}/attachments"></div>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if .Attachments}}
|
2024-03-05 04:59:16 +00:00
|
|
|
{{template "repo/issue/view_content/attachments" dict "Attachments" .Attachments "RenderedContent" .RenderedContent}}
|
2020-04-28 18:05:39 +00:00
|
|
|
{{end}}
|
2020-04-10 22:01:41 +00:00
|
|
|
</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{$reactions := .Reactions.GroupByType}}
|
|
|
|
{{if $reactions}}
|
2023-05-28 01:34:18 +00:00
|
|
|
{{template "repo/issue/view_content/reactions" dict "ctxData" $ "ActionURL" (printf "%s/comments/%d/reactions" $.RepoLink .ID) "Reactions" $reactions}}
|
2021-06-15 01:12:33 +00:00
|
|
|
{{end}}
|
2020-04-10 22:01:41 +00:00
|
|
|
</div>
|
2019-07-06 22:03:00 +00:00
|
|
|
</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
2020-04-18 13:50:25 +00:00
|
|
|
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if .Review.CodeComments}}
|
|
|
|
<div class="timeline-item event">
|
2022-08-31 15:58:54 +00:00
|
|
|
{{range $filename, $lines := .Review.CodeComments}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{range $line, $comms := $lines}}
|
2024-01-24 03:26:28 +00:00
|
|
|
{{template "repo/issue/view_content/conversation" dict "." $ "comments" $comms}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
2020-04-10 22:01:41 +00:00
|
|
|
{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
2018-08-06 04:43:22 +00:00
|
|
|
{{end}}
|
2020-04-10 22:01:41 +00:00
|
|
|
</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else if eq .Type 23}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-lock"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2022-08-31 15:58:54 +00:00
|
|
|
{{if .Content}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.lock_with_reason" .Content $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
2022-08-31 15:58:54 +00:00
|
|
|
{{else}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.lock_no_reason" $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
2022-08-31 15:58:54 +00:00
|
|
|
{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
|
|
|
{{else if eq .Type 24}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-key"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.unlock_comment" $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 25}}
|
|
|
|
<div class="timeline-item event">
|
|
|
|
<span class="badge">{{svg "octicon-git-branch"}}</span>
|
2024-02-24 07:49:16 +00:00
|
|
|
{{if not .OriginalAuthor}}
|
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
|
|
|
{{end}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2024-02-26 04:08:21 +00:00
|
|
|
{{template "repo/issue/view_content/comments_authorlink" dict "ctxData" $ "comment" .}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "repo.pulls.change_target_branch_at" .OldRef .NewRef $createdStr}}
|
2019-07-06 22:03:00 +00:00
|
|
|
</span>
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
|
|
|
{{else if eq .Type 26}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
|
|
|
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.del_time_history" $createdStr}}
|
2019-07-06 22:03:00 +00:00
|
|
|
</span>
|
2024-03-14 19:01:16 +00:00
|
|
|
<div class="detail flex-text-block">
|
2022-01-21 17:59:26 +00:00
|
|
|
{{svg "octicon-clock"}}
|
2023-06-23 12:12:39 +00:00
|
|
|
{{if .RenderedContent}}
|
|
|
|
{{/* compatibility with time comments made before v1.21 */}}
|
|
|
|
<span class="text grey muted-links">{{.RenderedContent}}</span>
|
|
|
|
{{else}}
|
|
|
|
<span class="text grey muted-links">- {{.Content|Sec2Time}}</span>
|
|
|
|
{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
2019-12-27 20:30:58 +00:00
|
|
|
</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else if eq .Type 27}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-eye"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if (gt .AssigneeID 0)}}
|
|
|
|
{{if .RemovedAssignee}}
|
|
|
|
{{if eq .PosterID .AssigneeID}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.remove_review_request_self" $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.remove_review_request" .Assignee.GetDisplayName $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
2020-10-12 19:55:13 +00:00
|
|
|
{{else}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.add_review_request" .Assignee.GetDisplayName $createdStr}}
|
2020-10-12 19:55:13 +00:00
|
|
|
{{end}}
|
2020-04-06 16:33:34 +00:00
|
|
|
{{else}}
|
2023-04-19 23:50:00 +00:00
|
|
|
<!-- If the assigned team is deleted, just displaying "Ghost Team" in the comment -->
|
|
|
|
{{$teamName := "Ghost Team"}}
|
|
|
|
{{if .AssigneeTeam}}
|
|
|
|
{{$teamName = .AssigneeTeam.Name}}
|
|
|
|
{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if .RemovedAssignee}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.remove_review_request" $teamName $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.review.add_review_request" $teamName $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
2020-10-12 19:55:13 +00:00
|
|
|
{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{else if and (eq .Type 29) (or (gt .CommitsNum 0) .IsForcePush)}}
|
Fix cannot reopen after pushing commits to a closed PR (#23189)
Close: #22784
1. On GH, we can reopen a PR which was closed before after pushing
commits. After reopening PR, we can see the commits that were pushed
after closing PR in the time line. So the case of
[issue](https://github.com/go-gitea/gitea/issues/22784) is a bug which
needs to be fixed.
2. After closing a PR and pushing commits, `headBranchSha` is not equal
to `sha`(which is the last commit ID string of reference). If the
judgement exists, the button of reopen will not display. So, skip the
judgement if the status of PR is closed.
![image](https://user-images.githubusercontent.com/33891828/222037529-651fccf9-0bba-433e-b2f0-79c17e0cc812.png)
3. Even if PR is already close, we should still insert comment record
into DB when we push commits.
So we should still call function `CreatePushPullComment()`.
https://github.com/go-gitea/gitea/blob/067b0c2664d127c552ccdfd264257caca4907a77/services/pull/pull.go#L260-L282
So, I add a switch(`includeClosed`) to the
`GetUnmergedPullRequestsByHeadInfo` func to control whether the status
of PR must be open. In this case, by setting `includeClosed` to `true`,
we can query the closed PR.
![image](https://user-images.githubusercontent.com/33891828/222621045-bb80987c-10c5-4eac-aa0c-1fb9c6aefb51.png)
4. In the loop of comments, I use the`latestCloseCommentID` variable to
record the last occurrence of the close comment.
In the go template, if the status of PR is closed, the comments whose
type is `CommentTypePullRequestPush(29)` after `latestCloseCommentID`
won't be rendered.
![image](https://user-images.githubusercontent.com/33891828/222058913-c91cf3e3-819b-40c5-8015-654b31eeccff.png)
e.g.
1). The initial status of the PR is opened.
![image](https://user-images.githubusercontent.com/33891828/222453617-33c5093e-f712-4cd6-8489-9f87e2075869.png)
2). Then I click the button of `Close`. PR is closed now.
![image](https://user-images.githubusercontent.com/33891828/222453694-25c588a9-c121-4897-9ae5-0b13cf33d20b.png)
3). I try to push a commit to this PR, even though its current status is
closed.
![image](https://user-images.githubusercontent.com/33891828/222453916-361678fb-7321-410d-9e37-5a26e8095638.png)
But in comments list, this commit do not display.This is as expected :)
![image](https://user-images.githubusercontent.com/33891828/222454169-7617a791-78d2-404e-be5e-77d555f93313.png)
4). Click the `Reopen` button, the commit which is pushed after closing
PR display now.
![image](https://user-images.githubusercontent.com/33891828/222454533-897893b6-b96e-4701-b5cb-b1800f382b8f.png)
---------
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
2023-03-03 13:16:58 +00:00
|
|
|
<!-- If PR is closed, the comments whose type is CommentTypePullRequestPush(29) after latestCloseCommentID won't be rendered. //-->
|
|
|
|
{{if and .Issue.IsClosed (gt .ID $.LatestCloseCommentID)}}
|
|
|
|
{{continue}}
|
2023-03-04 04:48:05 +00:00
|
|
|
{{end}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
2022-01-21 17:59:26 +00:00
|
|
|
<span class="badge">{{svg "octicon-repo-push"}}</span>
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2022-08-31 15:58:54 +00:00
|
|
|
{{if .IsForcePush}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.force_push_codes" $.Issue.PullRequest.HeadBranch (ShortSha .OldCommit) ($.Issue.Repo.CommitLink .OldCommit) (ShortSha .NewCommit) ($.Issue.Repo.CommitLink .NewCommit) $createdStr}}
|
2020-08-17 03:07:38 +00:00
|
|
|
{{else}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.TrN (len .Commits) "repo.issues.push_commit_1" "repo.issues.push_commits_n" (len .Commits) $createdStr}}
|
2020-08-17 03:07:38 +00:00
|
|
|
{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
2023-03-01 19:19:47 +00:00
|
|
|
{{if and .IsForcePush $.Issue.PullRequest.BaseRepo.Name}}
|
2024-03-04 03:33:20 +00:00
|
|
|
<span class="tw-float-right comparebox">
|
2023-09-25 08:56:50 +00:00
|
|
|
<a href="{{$.Issue.PullRequest.BaseRepo.Link}}/compare/{{PathEscape .OldCommit}}..{{PathEscape .NewCommit}}" rel="nofollow" class="ui compare label">{{ctx.Locale.Tr "repo.issues.force_push_compare"}}</a>
|
2023-03-01 19:19:47 +00:00
|
|
|
</span>
|
|
|
|
{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
|
|
|
{{if not .IsForcePush}}
|
|
|
|
{{template "repo/commits_list_small" dict "comment" . "root" $}}
|
|
|
|
{{end}}
|
|
|
|
{{else if eq .Type 30}}
|
|
|
|
{{if not $.UnitProjectsGlobalDisabled}}
|
2021-02-11 17:32:25 +00:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
2022-01-21 17:59:26 +00:00
|
|
|
<span class="badge">{{svg "octicon-project"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2023-04-21 21:15:17 +00:00
|
|
|
{{$oldProjectDisplayHtml := "Unknown Project"}}
|
|
|
|
{{if .OldProject}}
|
|
|
|
{{$trKey := printf "projects.type-%d.display_name" .OldProject.Type}}
|
2024-02-25 10:45:56 +00:00
|
|
|
{{$oldProjectDisplayHtml = HTMLFormat `<span data-tooltip-content="%s">%s</span>` (ctx.Locale.Tr $trKey) .OldProject.Title}}
|
2023-04-21 21:15:17 +00:00
|
|
|
{{end}}
|
|
|
|
{{$newProjectDisplayHtml := "Unknown Project"}}
|
|
|
|
{{if .Project}}
|
|
|
|
{{$trKey := printf "projects.type-%d.display_name" .Project.Type}}
|
2024-02-25 10:45:56 +00:00
|
|
|
{{$newProjectDisplayHtml = HTMLFormat `<span data-tooltip-content="%s">%s</span>` (ctx.Locale.Tr $trKey) .Project.Title}}
|
2023-04-21 21:15:17 +00:00
|
|
|
{{end}}
|
|
|
|
{{if and (gt .OldProjectID 0) (gt .ProjectID 0)}}
|
2024-02-25 10:45:56 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.change_project_at" $oldProjectDisplayHtml $newProjectDisplayHtml $createdStr}}
|
2023-04-21 21:15:17 +00:00
|
|
|
{{else if gt .OldProjectID 0}}
|
2024-02-25 10:45:56 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.remove_project_at" $oldProjectDisplayHtml $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else if gt .ProjectID 0}}
|
2024-02-25 10:45:56 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.add_project_at" $newProjectDisplayHtml $createdStr}}
|
2021-02-11 17:32:25 +00:00
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
|
|
|
{{else if eq .Type 32}}
|
|
|
|
<div class="timeline-item-group">
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<a class="timeline-avatar"{{if gt .Poster.ID 0}} href="{{.Poster.HomeLink}}"{{end}}>
|
2023-05-14 14:15:59 +00:00
|
|
|
<img src="{{.Poster.AvatarLink $.Context}}" width="40" height="40">
|
2022-01-21 17:59:26 +00:00
|
|
|
</a>
|
|
|
|
<span class="badge grey">{{svg "octicon-x" 16}}</span>
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{$reviewerName := ""}}
|
|
|
|
{{if eq .Review.OriginalAuthor ""}}
|
|
|
|
{{$reviewerName = .Review.Reviewer.Name}}
|
|
|
|
{{else}}
|
|
|
|
{{$reviewerName = .Review.OriginalAuthor}}
|
|
|
|
{{end}}
|
2024-02-22 17:02:33 +00:00
|
|
|
<span class="dismissed-message">{{ctx.Locale.Tr "repo.issues.review.dismissed" $reviewerName $createdStr}}</span>
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{if .Content}}
|
|
|
|
<div class="timeline-item comment">
|
|
|
|
<div class="content">
|
2024-03-22 19:51:29 +00:00
|
|
|
<div class="ui top attached header comment-header-left tw-flex tw-items-center arrow-top">
|
2023-05-10 09:16:44 +00:00
|
|
|
{{if gt .Poster.ID 0}}
|
|
|
|
<a class="inline-timeline-avatar" href="{{.Poster.HomeLink}}">
|
2023-08-10 03:19:39 +00:00
|
|
|
{{ctx.AvatarUtils.Avatar .Poster 24}}
|
2023-05-10 09:16:44 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "action.review_dismissed_reason"}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<div class="render-content markup">
|
|
|
|
{{if .RenderedContent}}
|
2024-03-01 07:11:51 +00:00
|
|
|
{{.RenderedContent}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<span class="no-content">{{ctx.Locale.Tr "repo.issues.no_content"}}</span>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2021-02-11 17:32:25 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-11-19 09:54:31 +00:00
|
|
|
{{end}}
|
2022-01-21 17:59:26 +00:00
|
|
|
</div>
|
|
|
|
{{else if eq .Type 33}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-git-branch"}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2022-09-03 09:33:34 +00:00
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{if and .OldRef .NewRef}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.change_ref_at" .OldRef .NewRef $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else if .OldRef}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.remove_ref_at" .OldRef $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{else}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "repo.issues.add_ref_at" .NewRef $createdStr}}
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
</div>
|
2022-05-07 17:05:52 +00:00
|
|
|
{{else if or (eq .Type 34) (eq .Type 35)}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-git-merge" 16}}</span>
|
2023-01-20 04:00:32 +00:00
|
|
|
<span class="text grey muted-links">
|
2024-02-26 04:08:21 +00:00
|
|
|
{{template "repo/issue/view_content/comments_authorlink" dict "ctxData" $ "comment" .}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{if eq .Type 34}}{{ctx.Locale.Tr "repo.pulls.auto_merge_newly_scheduled_comment" $createdStr}}
|
|
|
|
{{else}}{{ctx.Locale.Tr "repo.pulls.auto_merge_canceled_schedule_comment" $createdStr}}{{end}}
|
2022-05-07 17:05:52 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
2023-05-25 13:17:19 +00:00
|
|
|
{{else if or (eq .Type 36) (eq .Type 37)}}
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-pin" 16}}</span>
|
2023-08-10 03:19:39 +00:00
|
|
|
{{template "shared/user/avatarlink" dict "user" .Poster}}
|
2023-05-25 13:17:19 +00:00
|
|
|
<span class="text grey muted-links">
|
|
|
|
{{template "shared/user/authorlink" .Poster}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{if eq .Type 36}}{{ctx.Locale.Tr "repo.issues.pin_comment" $createdStr}}
|
|
|
|
{{else}}{{ctx.Locale.Tr "repo.issues.unpin_comment" $createdStr}}{{end}}
|
2023-05-25 13:17:19 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
2022-01-21 17:59:26 +00:00
|
|
|
{{end}}
|
2018-08-06 04:43:22 +00:00
|
|
|
{{end}}
|
2017-03-17 05:57:43 +00:00
|
|
|
{{end}}
|