2019-02-05 04:38:11 -07:00
|
|
|
{{ template "base/alert" }}
|
2017-03-16 23:57:43 -06:00
|
|
|
{{range .Issue.Comments}}
|
2017-12-10 21:37:04 -07:00
|
|
|
{{ $createdStr:= TimeSinceUnix .CreatedUnix $.Lang }}
|
2017-03-16 23:57:43 -06:00
|
|
|
|
2019-02-18 13:55:04 -07:00
|
|
|
<!-- 0 = COMMENT, 1 = REOPEN, 2 = CLOSE, 3 = ISSUE_REF, 4 = COMMIT_REF,
|
|
|
|
5 = COMMENT_REF, 6 = PULL_REF, 7 = COMMENT_LABEL, 12 = START_TRACKING,
|
|
|
|
13 = STOP_TRACKING, 14 = ADD_TIME_MANUAL, 16 = ADDED_DEADLINE, 17 = MODIFIED_DEADLINE,
|
|
|
|
18 = REMOVED_DEADLINE, 19 = ADD_DEPENDENCY, 20 = REMOVE_DEPENDENCY, 21 = CODE,
|
2019-12-27 13:30:58 -07:00
|
|
|
22 = REVIEW, 23 = ISSUE_LOCKED, 24 = ISSUE_UNLOCKED, 25 = TARGET_BRANCH_CHANGED,
|
2020-04-06 10:33:34 -06:00
|
|
|
26 = DELETE_TIME_MANUAL, 27 = REVIEW_REQUEST -->
|
2017-03-16 23:57:43 -06:00
|
|
|
{{if eq .Type 0}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item comment" id="{{.HashTag}}">
|
2019-07-07 20:14:12 -06:00
|
|
|
{{if .OriginalAuthor }}
|
2020-04-10 16:01:41 -06:00
|
|
|
<span class="timeline-avatar"><img src="/img/avatar_default.png"></span>
|
2019-07-07 20:14:12 -06:00
|
|
|
{{else}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<a class="timeline-avatar" {{if gt .Poster.ID 0}}href="{{.Poster.HomeLink}}"{{end}}>
|
2017-03-16 23:57:43 -06:00
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-07-07 20:14:12 -06:00
|
|
|
{{end}}
|
2017-03-16 23:57:43 -06:00
|
|
|
<div class="content">
|
|
|
|
<div class="ui top attached header">
|
2019-07-07 20:14:12 -06:00
|
|
|
{{if .OriginalAuthor }}
|
|
|
|
<span class="text black"><i class="fa {{MigrationIcon $.Repository.GetOriginalURLHostname}}" aria-hidden="true"></i> {{ .OriginalAuthor }}</span><span class="text grey"> {{$.i18n.Tr "repo.issues.commented_at" .Issue.HashTag $createdStr | Safe}} {{if $.Repository.OriginalURL}}</span><span class="text migrate">({{$.i18n.Tr "repo.migrated_from" $.Repository.OriginalURL $.Repository.GetOriginalURLHostname | Safe }}){{end}}</span>
|
|
|
|
{{else}}
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a {{if gt .Poster.ID 0}}href="{{.Poster.HomeLink}}"{{end}}>{{.Poster.GetDisplayName}}</a> {{$.i18n.Tr "repo.issues.commented_at" .HashTag $createdStr | Safe}}</span>
|
2019-07-07 20:14:12 -06:00
|
|
|
{{end}}
|
2019-11-19 11:33:42 -07:00
|
|
|
{{if not $.Repository.IsArchived}}
|
|
|
|
<div class="ui right actions">
|
|
|
|
{{if gt .ShowTag 0}}
|
|
|
|
<div class="item tag">
|
|
|
|
{{if eq .ShowTag 1}}
|
|
|
|
{{$.i18n.Tr "repo.issues.poster"}}
|
|
|
|
{{else if eq .ShowTag 2}}
|
|
|
|
{{$.i18n.Tr "repo.issues.collaborator"}}
|
|
|
|
{{else if eq .ShowTag 3}}
|
|
|
|
{{$.i18n.Tr "repo.issues.owner"}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2019-12-27 16:43:56 -07:00
|
|
|
{{template "repo/issue/view_content/add_reaction" Dict "ctx" $ "ActionURL" (Printf "%s/comments/%d/reactions" $.RepoLink .ID)}}
|
2019-11-19 11:33:42 -07:00
|
|
|
{{template "repo/issue/view_content/context_menu" Dict "ctx" $ "item" . "delete" true "diff" false }}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2017-03-16 23:57:43 -06:00
|
|
|
</div>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<div class="render-content markdown has-emoji">
|
|
|
|
{{if .RenderedContent}}
|
|
|
|
{{.RenderedContent|Str2html}}
|
|
|
|
{{else}}
|
|
|
|
<span class="no-content">{{$.i18n.Tr "repo.issues.no_content"}}</span>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2019-11-19 11:33:42 -07:00
|
|
|
<div id="comment-{{.ID}}" class="raw-content hide">{{.Content}}</div>
|
2019-10-15 06:19:32 -06:00
|
|
|
<div class="edit-content-zone hide" data-write="issuecomment-{{.ID}}-write" data-preview="issuecomment-{{.ID}}-preview" data-update-url="{{$.RepoLink}}/comments/{{.ID}}" data-context="{{$.RepoLink}}" data-attachment-url="{{$.RepoLink}}/comments/{{.ID}}/attachments"></div>
|
2017-03-16 23:57:43 -06:00
|
|
|
</div>
|
2017-12-03 16:14:26 -07:00
|
|
|
{{$reactions := .Reactions.GroupByType}}
|
|
|
|
{{if $reactions}}
|
|
|
|
<div class="ui attached segment reactions">
|
2019-12-27 16:43:56 -07:00
|
|
|
{{template "repo/issue/view_content/reactions" Dict "ctx" $ "ActionURL" (Printf "%s/comments/%d/reactions" $.RepoLink .ID) "Reactions" $reactions}}
|
2017-12-03 16:14:26 -07:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2017-03-16 23:57:43 -06:00
|
|
|
{{if .Attachments}}
|
|
|
|
<div class="ui bottom attached segment">
|
|
|
|
<div class="ui small images">
|
2019-10-15 06:19:32 -06:00
|
|
|
{{template "repo/issue/view_content/attachments" Dict "ctx" $ "Attachments" .Attachments}}
|
2017-03-16 23:57:43 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 1}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-primitive-dot" 16}}</span>
|
2017-03-16 23:57:43 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a> {{$.i18n.Tr "repo.issues.reopened_at" .EventTag $createdStr | Safe}}</span>
|
2017-03-16 23:57:43 -06:00
|
|
|
</div>
|
|
|
|
{{else if eq .Type 2}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-circle-slash" 16}}</span>
|
2017-03-16 23:57:43 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a> {{$.i18n.Tr "repo.issues.closed_at" .EventTag $createdStr | Safe}}</span>
|
2017-03-16 23:57:43 -06:00
|
|
|
</div>
|
2019-11-18 06:13:07 -07:00
|
|
|
{{else if eq .Type 3 5 6}}
|
|
|
|
{{ $refFrom:= "" }}
|
|
|
|
{{if ne .RefRepoID .Issue.RepoID}}
|
|
|
|
{{ $refFrom = $.i18n.Tr "repo.issues.ref_from" .RefRepo.FullName }}
|
|
|
|
{{end}}
|
|
|
|
{{ $refTr := "repo.issues.ref_issue_from" }}
|
|
|
|
{{if .Issue.IsPull}}
|
|
|
|
{{ $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" }}
|
|
|
|
{{end}}
|
|
|
|
{{ $createdStr:= TimeSinceUnix .CreatedUnix $.Lang }}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-bookmark" 16}}</span>
|
2019-09-19 23:45:38 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
|
|
|
{{if eq .RefAction 3}}<del>{{end}}
|
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a>
|
2019-11-18 06:13:07 -07:00
|
|
|
{{$.i18n.Tr $refTr .EventTag $createdStr .RefCommentHTMLURL $refFrom | Safe}}
|
2019-09-19 23:45:38 -06:00
|
|
|
</span>
|
|
|
|
{{if eq .RefAction 3}}</del>{{end}}
|
|
|
|
|
|
|
|
<div class="detail">
|
|
|
|
<span class="text grey"><a href="{{.RefIssueHTMLURL}}"><b>{{.RefIssueTitle | Str2html}}</b> {{.RefIssueIdent | Str2html}}</a></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-03-16 23:57:43 -06:00
|
|
|
{{else if eq .Type 4}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-bookmark" 16}}</span>
|
2017-03-16 23:57:43 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a> {{$.i18n.Tr "repo.issues.commit_ref_at" .EventTag $createdStr | Safe}}</span>
|
2017-03-16 23:57:43 -06:00
|
|
|
|
|
|
|
<div class="detail">
|
2020-02-11 10:02:41 -07:00
|
|
|
{{svg "octicon-git-commit" 16}}
|
2017-03-16 23:57:43 -06:00
|
|
|
<span class="text grey">{{.Content | Str2html}}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 7}}
|
|
|
|
{{if .Label}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-tag" 16}}</span>
|
2017-03-16 23:57:43 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a>
|
2018-02-18 13:06:37 -07:00
|
|
|
{{if .Content}}{{$.i18n.Tr "repo.issues.add_label_at" .Label.ForegroundColor .Label.Color (.Label.Name|Escape) $createdStr | Safe}}{{else}}{{$.i18n.Tr "repo.issues.remove_label_at" .Label.ForegroundColor .Label.Color (.Label.Name|Escape) $createdStr | Safe}}{{end}}</span>
|
2017-03-16 23:57:43 -06:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{else if eq .Type 8}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-milestone" 16}}</span>
|
2017-03-16 23:57:43 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a>
|
2018-02-18 13:06:37 -07:00
|
|
|
{{if gt .OldMilestoneID 0}}{{if gt .MilestoneID 0}}{{$.i18n.Tr "repo.issues.change_milestone_at" (.OldMilestone.Name|Escape) (.Milestone.Name|Escape) $createdStr | Safe}}{{else}}{{$.i18n.Tr "repo.issues.remove_milestone_at" (.OldMilestone.Name|Escape) $createdStr | Safe}}{{end}}{{else if gt .MilestoneID 0}}{{$.i18n.Tr "repo.issues.add_milestone_at" (.Milestone.Name|Escape) $createdStr | Safe}}{{end}}</span>
|
2017-03-16 23:57:43 -06:00
|
|
|
</div>
|
|
|
|
{{else if eq .Type 9}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-person" 16}}</span>
|
2018-05-09 10:29:04 -06:00
|
|
|
{{if gt .AssigneeID 0}}
|
|
|
|
{{if .RemovedAssignee}}
|
|
|
|
<a class="ui avatar image" href="{{.Assignee.HomeLink}}">
|
|
|
|
<img src="{{.Assignee.RelAvatarLink}}">
|
|
|
|
</a>
|
|
|
|
<span class="text grey">
|
2019-05-08 02:41:35 -06:00
|
|
|
<a href="{{.Assignee.HomeLink}}">{{.Assignee.GetDisplayName}}</a>
|
2019-01-19 12:16:46 -07:00
|
|
|
{{ if eq .Poster.ID .Assignee.ID }}
|
|
|
|
{{$.i18n.Tr "repo.issues.remove_self_assignment" $createdStr | Safe}}
|
|
|
|
{{ else }}
|
2019-05-08 02:41:35 -06:00
|
|
|
{{$.i18n.Tr "repo.issues.remove_assignee_at" (.Poster.GetDisplayName|Escape) $createdStr | Safe}}
|
2019-01-19 12:16:46 -07:00
|
|
|
{{ end }}
|
2018-05-09 10:29:04 -06:00
|
|
|
</span>
|
|
|
|
{{else}}
|
|
|
|
<a class="ui avatar image" href="{{.Assignee.HomeLink}}">
|
|
|
|
<img src="{{.Assignee.RelAvatarLink}}">
|
|
|
|
</a>
|
|
|
|
<span class="text grey">
|
2019-05-08 02:41:35 -06:00
|
|
|
<a href="{{.Assignee.HomeLink}}">{{.Assignee.GetDisplayName}}</a>
|
2018-05-09 10:29:04 -06:00
|
|
|
{{if eq .Poster.ID .AssigneeID}}
|
|
|
|
{{$.i18n.Tr "repo.issues.self_assign_at" $createdStr | Safe}}
|
|
|
|
{{else}}
|
2019-05-08 02:41:35 -06:00
|
|
|
{{$.i18n.Tr "repo.issues.add_assignee_at" (.Poster.GetDisplayName|Escape) $createdStr | Safe}}
|
2018-05-09 10:29:04 -06:00
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2017-03-16 23:57:43 -06:00
|
|
|
</div>
|
|
|
|
{{else if eq .Type 10}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-pencil" 16}}</span>
|
2018-02-18 13:06:37 -07:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a>
|
2018-02-18 13:06:37 -07:00
|
|
|
{{$.i18n.Tr "repo.issues.change_title_at" (.OldTitle|Escape) (.NewTitle|Escape) $createdStr | Safe}}
|
|
|
|
</span>
|
2017-03-16 23:57:43 -06:00
|
|
|
</div>
|
|
|
|
{{else if eq .Type 11}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-git-branch" 16}}</span>
|
2018-02-18 13:06:37 -07:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a>
|
2018-04-09 21:43:37 -06:00
|
|
|
{{$.i18n.Tr "repo.issues.delete_branch_at" (.CommitSHA|Escape) $createdStr | Safe}}
|
2018-02-18 13:06:37 -07:00
|
|
|
</span>
|
2017-03-16 23:57:43 -06:00
|
|
|
</div>
|
2019-07-06 16:03:00 -06:00
|
|
|
{{else if eq .Type 12}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock" 16}}</span>
|
2017-09-12 00:48:13 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a> {{$.i18n.Tr "repo.issues.start_tracking_history" $createdStr | Safe}}</span>
|
2017-09-12 00:48:13 -06:00
|
|
|
</div>
|
|
|
|
{{else if eq .Type 13}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock" 16}}</span>
|
2017-09-12 00:48:13 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a> {{$.i18n.Tr "repo.issues.stop_tracking_history" $createdStr | Safe}}</span>
|
2017-09-12 00:48:13 -06:00
|
|
|
|
|
|
|
<div class="detail">
|
2020-02-11 10:02:41 -07:00
|
|
|
{{svg "octicon-clock" 16}}
|
2017-09-12 00:48:13 -06:00
|
|
|
<span class="text grey">{{.Content}}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 14}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock" 16}}</span>
|
2017-09-12 00:48:13 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a> {{$.i18n.Tr "repo.issues.add_time_history" $createdStr | Safe}}</span>
|
2017-09-12 00:48:13 -06:00
|
|
|
<div class="detail">
|
2020-02-11 10:02:41 -07:00
|
|
|
{{svg "octicon-clock" 16}}
|
2017-09-12 00:48:13 -06:00
|
|
|
<span class="text grey">{{.Content}}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 15}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock" 16}}</span>
|
2017-09-12 00:48:13 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a> {{$.i18n.Tr "repo.issues.cancel_tracking_history" $createdStr | Safe}}</span>
|
2017-09-12 00:48:13 -06:00
|
|
|
</div>
|
2018-05-01 13:05:28 -06:00
|
|
|
{{else if eq .Type 16}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock" 16}}</span>
|
2018-05-01 13:05:28 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a>
|
2018-05-01 13:05:28 -06:00
|
|
|
{{$.i18n.Tr "repo.issues.due_date_added" .Content $createdStr | Safe}}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 17}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock" 16}}</span>
|
2018-05-01 13:05:28 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a>
|
2018-05-01 13:05:28 -06:00
|
|
|
{{$.i18n.Tr "repo.issues.due_date_modified" (.Content | ParseDeadline) $createdStr | Safe}}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 18}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock" 16}}</span>
|
2018-05-01 13:05:28 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2019-05-08 02:41:35 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a>
|
2018-05-01 13:05:28 -06:00
|
|
|
{{$.i18n.Tr "repo.issues.due_date_remove" .Content $createdStr | Safe}}
|
|
|
|
</span>
|
|
|
|
</div>
|
2018-07-17 15:23:58 -06:00
|
|
|
{{else if eq .Type 19}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-dependent" 16}}</span>
|
2019-07-06 16:03:00 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
2018-07-17 15:23:58 -06:00
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
2019-11-19 11:33:42 -07:00
|
|
|
</a>
|
|
|
|
<span class="text grey">
|
|
|
|
{{$.i18n.Tr "repo.issues.dependency.added_dependency" .Poster.HomeLink (.Poster.GetDisplayName|Escape) $createdStr | Safe}}
|
|
|
|
</span>
|
2020-01-21 03:18:52 -07:00
|
|
|
{{if .DependentIssue}}
|
|
|
|
<div class="detail">
|
2020-02-11 10:02:41 -07:00
|
|
|
{{svg "octicon-plus" 16}}
|
2020-01-21 03:18:52 -07:00
|
|
|
<span class="text grey">
|
|
|
|
<a href="{{.DependentIssue.HTMLURL}}">
|
|
|
|
{{if eq .DependentIssue.RepoID .Issue.RepoID}}
|
|
|
|
#{{.DependentIssue.Index}} {{.DependentIssue.Title}}
|
|
|
|
{{else}}
|
|
|
|
{{.DependentIssue.Repo.FullName}}#{{.DependentIssue.Index}} - {{.DependentIssue.Title}}
|
|
|
|
{{end}}
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2019-11-19 11:33:42 -07:00
|
|
|
</div>
|
2018-07-17 15:23:58 -06:00
|
|
|
{{else if eq .Type 20}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-dependent" 16}}</span>
|
2019-11-19 11:33:42 -07:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
|
|
|
<span class="text grey">
|
|
|
|
{{$.i18n.Tr "repo.issues.dependency.removed_dependency" .Poster.HomeLink (.Poster.GetDisplayName|Escape) $createdStr | Safe}}
|
|
|
|
</span>
|
2020-01-21 03:18:52 -07:00
|
|
|
{{if .DependentIssue}}
|
|
|
|
<div class="detail">
|
2020-02-11 10:02:41 -07:00
|
|
|
<span class="text grey">{{svg "octicon-trashcan" 16}}</span>
|
2020-01-21 03:18:52 -07:00
|
|
|
<span class="text grey">
|
|
|
|
<a href="{{.DependentIssue.HTMLURL}}">
|
|
|
|
{{if eq .DependentIssue.RepoID .Issue.RepoID}}
|
|
|
|
#{{.DependentIssue.Index}} {{.DependentIssue.Title}}
|
|
|
|
{{else}}
|
|
|
|
{{.DependentIssue.Repo.FullName}}#{{.DependentIssue.Index}} - {{.DependentIssue.Title}}
|
|
|
|
{{end}}
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2019-11-19 11:33:42 -07:00
|
|
|
</div>
|
2018-08-05 22:43:22 -06:00
|
|
|
{{else if eq .Type 22}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item-group">
|
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
2020-01-23 10:28:15 -07:00
|
|
|
{{if .OriginalAuthor }}
|
|
|
|
{{else}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<a class="timeline-avatar"{{if gt .Poster.ID 0}} href="{{.Poster.HomeLink}}"{{end}}>
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
2020-01-23 10:28:15 -07:00
|
|
|
{{end}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<span class="badge {{if eq .Review.Type 1}}green
|
|
|
|
{{- else if eq .Review.Type 2}}grey
|
|
|
|
{{- else if eq .Review.Type 3}}red
|
|
|
|
{{- else}}grey{{end}}">{{svg (printf "octicon-%s" .Review.Type.Icon) 16}}</span>
|
|
|
|
<span class="text grey">
|
|
|
|
{{if .OriginalAuthor }}
|
|
|
|
<span class="text black"><i class="fa {{MigrationIcon $.Repository.GetOriginalURLHostname}}" aria-hidden="true"></i> {{ .OriginalAuthor }}</span><span class="text grey"> {{if $.Repository.OriginalURL}}</span><span class="text migrate">({{$.i18n.Tr "repo.migrated_from" $.Repository.OriginalURL $.Repository.GetOriginalURLHostname | Safe }}){{end}}</span>
|
|
|
|
{{else}}
|
|
|
|
<a{{if gt .Poster.ID 0}} href="{{.Poster.HomeLink}}"{{end}}>{{.Poster.GetDisplayName}}</a>
|
|
|
|
{{end}}
|
2020-01-24 14:23:10 -07:00
|
|
|
|
2020-04-10 16:01:41 -06:00
|
|
|
{{if eq .Review.Type 1}}
|
|
|
|
{{$.i18n.Tr "repo.issues.review.approve" $createdStr | Safe}}
|
|
|
|
{{else if eq .Review.Type 2}}
|
|
|
|
{{$.i18n.Tr "repo.issues.review.comment" $createdStr | Safe}}
|
|
|
|
{{else if eq .Review.Type 3}}
|
|
|
|
{{$.i18n.Tr "repo.issues.review.reject" $createdStr | Safe}}
|
|
|
|
{{else}}
|
|
|
|
{{$.i18n.Tr "repo.issues.review.comment" $createdStr | Safe}}
|
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
</div>
|
2019-07-06 16:03:00 -06:00
|
|
|
{{if .Content}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item comment">
|
|
|
|
<div class="content">
|
|
|
|
<div class="ui top attached header arrow-top">
|
|
|
|
<span class="text grey">
|
|
|
|
{{if .OriginalAuthor }}
|
|
|
|
<span class="text black"><i class="fa {{MigrationIcon $.Repository.GetOriginalURLHostname}}" aria-hidden="true"></i> {{ .OriginalAuthor }}</span><span class="text grey"> {{if $.Repository.OriginalURL}}</span><span class="text migrate">({{$.i18n.Tr "repo.migrated_from" $.Repository.OriginalURL $.Repository.GetOriginalURLHostname | Safe }}){{end}}</span>
|
|
|
|
{{else}}
|
|
|
|
<a{{if gt .Poster.ID 0}} href="{{.Poster.HomeLink}}"{{end}}>{{.Poster.GetDisplayName}}</a>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{$.i18n.Tr "repo.issues.review.left_comment" | Safe}}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<div class="detail">
|
|
|
|
<span class="text black has-emoji">{{.Content}}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-07-06 16:03:00 -06:00
|
|
|
</div>
|
2020-04-10 16:01:41 -06:00
|
|
|
</div>
|
2019-07-06 16:03:00 -06:00
|
|
|
{{end}}
|
2020-04-10 16:01:41 -06:00
|
|
|
{{if .Review.CodeComments}}
|
|
|
|
<div class="timeline-item event">
|
|
|
|
{{ range $filename, $lines := .Review.CodeComments}}
|
|
|
|
{{range $line, $comms := $lines}}
|
|
|
|
<div class="ui segments">
|
|
|
|
<div class="ui segment">
|
|
|
|
{{$invalid := (index $comms 0).Invalidated}}
|
|
|
|
{{if $invalid}}
|
|
|
|
<button id="show-outdated-{{(index $comms 0).ID}}" data-comment="{{(index $comms 0).ID}}" class="ui compact right labeled button show-outdated">
|
|
|
|
{{svg "octicon-fold" 16}}
|
|
|
|
{{$.i18n.Tr "repo.issues.review.show_outdated"}}
|
|
|
|
</button>
|
|
|
|
<button id="hide-outdated-{{(index $comms 0).ID}}" data-comment="{{(index $comms 0).ID}}" class="hide ui compact right labeled button hide-outdated">
|
|
|
|
{{svg "octicon-fold" 16}}
|
|
|
|
{{$.i18n.Tr "repo.issues.review.hide_outdated"}}
|
|
|
|
</button>
|
|
|
|
{{end}}
|
|
|
|
<a href="{{(index $comms 0).CodeCommentURL}}" class="file-comment">{{$filename}}</a>
|
|
|
|
</div>
|
|
|
|
{{$diff := (CommentMustAsDiff (index $comms 0))}}
|
|
|
|
{{if $diff}}
|
|
|
|
{{$file := (index $diff.Files 0)}}
|
|
|
|
<div id="code-preview-{{(index $comms 0).ID}}" class="ui table segment{{if $invalid}} hide{{end}}">
|
|
|
|
<div class="diff-file-box diff-box file-content {{TabSizeClass $.Editorconfig $file.Name}}">
|
|
|
|
<div class="file-body file-code code-view code-diff code-diff-unified">
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
{{template "repo/diff/section_unified" dict "file" $file "root" $}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2018-08-05 22:43:22 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-10 16:01:41 -06:00
|
|
|
{{end}}
|
|
|
|
<div id="code-comments-{{(index $comms 0).ID}}" class="ui segment{{if $invalid}} hide{{end}}">
|
|
|
|
<div class="ui comments">
|
|
|
|
{{range $comms}}
|
|
|
|
{{ $createdSubStr:= TimeSinceUnix .CreatedUnix $.Lang }}
|
|
|
|
<div class="comment" id="{{.HashTag}}">
|
|
|
|
<a class="avatar">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
|
|
|
<div class="content">
|
|
|
|
<div class="code-comment-content">
|
|
|
|
<a class="author" {{if gt .Poster.ID 0}}href="{{.Poster.HomeLink}}"{{end}}>{{.Poster.GetDisplayName}}</a>
|
|
|
|
<div class="metadata">
|
|
|
|
<span class="date">{{$.i18n.Tr "repo.issues.commented_at" .HashTag $createdSubStr | Safe}}</span>
|
|
|
|
</div>
|
|
|
|
<div class="text">
|
|
|
|
<div class="render-content markdown has-emoji">
|
|
|
|
{{if .RenderedContent}}
|
|
|
|
{{.RenderedContent|Str2html}}
|
|
|
|
{{else}}
|
|
|
|
<span class="no-content">{{$.i18n.Tr "repo.issues.no_content"}}</span>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
<div class="raw-content hide">{{.Content}}</div>
|
2020-01-05 12:25:27 -07:00
|
|
|
</div>
|
2018-08-05 22:43:22 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-10 16:01:41 -06:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{template "repo/diff/comment_form_datahandler" dict "hidden" true "reply" (index $comms 0).ReviewID "root" $ "comment" (index $comms 0)}}
|
2018-08-05 22:43:22 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-10 16:01:41 -06:00
|
|
|
{{end}}
|
2018-08-05 22:43:22 -06:00
|
|
|
{{end}}
|
2020-04-10 16:01:41 -06:00
|
|
|
</div>
|
2018-08-05 22:43:22 -06:00
|
|
|
{{end}}
|
2019-07-06 16:03:00 -06:00
|
|
|
</div>
|
2019-02-18 13:55:04 -07:00
|
|
|
{{else if eq .Type 23}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-lock" 16}}</span>
|
2019-02-18 13:55:04 -07:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
|
|
|
|
|
|
|
{{ if .Content }}
|
2019-07-06 16:03:00 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a>
|
2019-02-18 13:55:04 -07:00
|
|
|
{{$.i18n.Tr "repo.issues.lock_with_reason" .Content $createdStr | Safe}}
|
2019-07-06 16:03:00 -06:00
|
|
|
</span>
|
2019-02-18 13:55:04 -07:00
|
|
|
{{ else }}
|
2019-07-06 16:03:00 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a>
|
2019-02-18 13:55:04 -07:00
|
|
|
{{$.i18n.Tr "repo.issues.lock_no_reason" $createdStr | Safe}}
|
2019-07-06 16:03:00 -06:00
|
|
|
</span>
|
2019-02-18 13:55:04 -07:00
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{else if eq .Type 24}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-key" 16}}</span>
|
2019-02-18 13:55:04 -07:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
|
|
|
|
2019-07-06 16:03:00 -06:00
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a>
|
|
|
|
{{$.i18n.Tr "repo.issues.unlock_comment" $createdStr | Safe}}
|
|
|
|
</span>
|
2019-02-18 13:55:04 -07:00
|
|
|
</div>
|
2019-12-15 23:20:25 -07:00
|
|
|
{{else if eq .Type 25}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event">
|
|
|
|
<span class="badge">{{svg "octicon-git-branch" 16}}</span>
|
2019-12-15 23:20:25 -07:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.Name}}</a>
|
|
|
|
{{$.i18n.Tr "repo.pulls.change_target_branch_at" (.OldRef|Escape) (.NewRef|Escape) $createdStr | Safe}}
|
|
|
|
</span>
|
|
|
|
</div>
|
2019-12-27 13:30:58 -07:00
|
|
|
{{else if eq .Type 26}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-clock" 16}}</span>
|
2019-12-27 13:30:58 -07:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
|
|
|
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a> {{$.i18n.Tr "repo.issues.del_time_history" $createdStr | Safe}}</span>
|
|
|
|
<div class="detail">
|
2020-02-11 10:02:41 -07:00
|
|
|
{{svg "octicon-clock" 16}}
|
2019-12-27 13:30:58 -07:00
|
|
|
<span class="text grey">{{.Content}}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-06 10:33:34 -06:00
|
|
|
{{else if eq .Type 27}}
|
2020-04-10 16:01:41 -06:00
|
|
|
<div class="timeline-item event" id="{{.HashTag}}">
|
|
|
|
<span class="badge">{{svg "octicon-eye" 16}}</span>
|
2020-04-06 10:33:34 -06:00
|
|
|
<a class="ui avatar image" href="{{.Poster.HomeLink}}">
|
|
|
|
<img src="{{.Poster.RelAvatarLink}}">
|
|
|
|
</a>
|
|
|
|
<span class="text grey">
|
|
|
|
<a href="{{.Poster.HomeLink}}">{{.Poster.GetDisplayName}}</a>
|
|
|
|
{{if .RemovedAssignee}}
|
|
|
|
{{if eq .PosterID .AssigneeID}}
|
|
|
|
{{$.i18n.Tr "repo.issues.review.remove_review_request_self" $createdStr | Safe}}
|
|
|
|
{{else}}
|
|
|
|
{{$.i18n.Tr "repo.issues.review.remove_review_request" (.Assignee.GetDisplayName|Escape) $createdStr | Safe}}
|
|
|
|
{{end}}
|
|
|
|
{{else}}
|
|
|
|
{{$.i18n.Tr "repo.issues.review.add_review_request" (.Assignee.GetDisplayName|Escape) $createdStr | Safe}}
|
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
2018-08-05 22:43:22 -06:00
|
|
|
{{end}}
|
2017-03-16 23:57:43 -06:00
|
|
|
{{end}}
|