Files
Atay-Makhzan/templates/repo/issue/view_content.tmpl
T

228 lines
9.2 KiB
Handlebars
Raw Normal View History

2017-12-31 01:47:52 +01:00
<div class="ui stackable grid">
2015-08-12 17:04:23 +08:00
{{if .Flash}}
2015-12-07 23:30:52 +01:00
<div class="sixteen wide column">
{{template "base/alert" .}}
</div>
{{end}}
{{if not .Issue.IsPull}}
{{template "repo/issue/view_title" .}}
{{end}}
{{ $createdStr:= TimeSinceUnix .Issue.CreatedUnix $.Lang }}
<div class="twelve wide column comment-list prevent-before-timeline">
2020-04-11 00:01:41 +02:00
<ui class="ui timeline">
<div id="{{.Issue.HashTag}}" class="timeline-item comment first">
{{if .Issue.OriginalAuthor }}
2021-05-21 17:03:27 +00:00
<span class="timeline-avatar"><img src="{{AppSubUrl}}/assets/img/avatar_default.png"></span>
{{else}}
2020-04-11 00:01:41 +02:00
<a class="timeline-avatar" {{if gt .Issue.Poster.ID 0}}href="{{.Issue.Poster.HomeLink}}"{{end}}>
2020-12-03 19:46:11 +01:00
{{avatar .Issue.Poster}}
2015-12-07 23:30:52 +01:00
</a>
{{end}}
<div class="content comment-container">
<div class="ui top attached header comment-header df ac sb">
<div class="comment-header-left df ac">
2020-10-31 14:17:52 +01:00
{{if .Issue.OriginalAuthor }}
<span class="text black">
2021-09-18 18:22:51 +02:00
{{svg (MigrationIcon .Repository.GetOriginalURLHostname)}}
2020-10-31 14:17:52 +01:00
{{ .Issue.OriginalAuthor }}
</span>
<span class="text grey">
{{ .i18n.Tr "repo.issues.commented_at" .Issue.HashTag $createdStr | Safe }}
</span>
<span class="text migrate">
{{if .Repository.OriginalURL}} ({{$.i18n.Tr "repo.migrated_from" .Repository.OriginalURL .Repository.GetOriginalURLHostname | Safe }}){{end}}
</span>
{{else}}
<span class="text grey">
<a class="author"{{if gt .Issue.Poster.ID 0}} href="{{.Issue.Poster.HomeLink}}"{{end}}>{{.Issue.Poster.GetDisplayName}}</a>
{{.i18n.Tr "repo.issues.commented_at" .Issue.HashTag $createdStr | Safe}}
</span>
{{end}}
</div>
<div class="comment-header-right actions df ac">
2020-10-31 14:17:52 +01:00
{{if not $.Repository.IsArchived}}
2020-09-11 02:09:14 +08:00
{{if gt .Issue.ShowTag 0}}
<div class="ui basic label">
2020-09-11 02:09:14 +08:00
{{if eq .Issue.ShowTag 2}}
{{$.i18n.Tr "repo.issues.collaborator"}}
{{else if eq .Issue.ShowTag 3}}
{{$.i18n.Tr "repo.issues.owner"}}
{{end}}
</div>
{{end}}
2019-12-28 00:43:56 +01:00
{{template "repo/issue/view_content/add_reaction" Dict "ctx" $ "ActionURL" (Printf "%s/issues/%d/reactions" $.RepoLink .Issue.Index)}}
2021-01-21 14:51:17 +01:00
{{template "repo/issue/view_content/context_menu" Dict "ctx" $ "item" .Issue "delete" false "issue" true "diff" false "IsCommentPoster" $.IsIssuePoster}}
2020-10-31 14:17:52 +01:00
{{end}}
</div>
2015-08-12 17:04:23 +08:00
</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 $.IsIssuePoster}}data-can-edit="true"{{end}}>
2015-12-07 23:30:52 +01:00
{{if .Issue.RenderedContent}}
{{.Issue.RenderedContent|Str2html}}
{{else}}
<span class="no-content">{{.i18n.Tr "repo.issues.no_content"}}</span>
{{end}}
2015-08-12 17:04:23 +08:00
</div>
2019-11-19 12:33:42 -06:00
<div id="comment-{{.Issue.ID}}" class="raw-content hide">{{.Issue.Content}}</div>
<div class="edit-content-zone hide" data-write="issue-{{.Issue.ID}}-write" data-preview="issue-{{.Issue.ID}}-preview" data-update-url="{{$.RepoLink}}/issues/{{.Issue.Index}}/content" data-context="{{.RepoLink}}" data-attachment-url="{{$.RepoLink}}/issues/{{.Issue.Index}}/attachments" data-view-attachment-url="{{$.RepoLink}}/issues/{{.Issue.Index}}/view-attachments"></div>
{{if .Issue.Attachments}}
{{template "repo/issue/view_content/attachments" Dict "ctx" $ "Attachments" .Issue.Attachments "Content" .Issue.RenderedContent}}
{{end}}
2015-08-12 17:04:23 +08:00
</div>
{{$reactions := .Issue.Reactions.GroupByType}}
{{if $reactions}}
<div class="ui attached segment reactions">
2019-12-28 00:43:56 +01:00
{{template "repo/issue/view_content/reactions" Dict "ctx" $ "ActionURL" (Printf "%s/issues/%d/reactions" $.RepoLink .Issue.Index) "Reactions" $reactions}}
</div>
{{end}}
2015-12-07 23:30:52 +01:00
</div>
</div>
2015-08-12 18:44:09 +08:00
{{ template "repo/issue/view_content/comments" . }}
2015-08-13 23:21:43 +08:00
2019-01-23 19:58:38 +01:00
{{if and .Issue.IsPull (not $.Repository.IsArchived)}}
{{ template "repo/issue/view_content/pull". }}
2015-12-07 23:30:52 +01:00
{{end}}
{{if .IsSigned}}
{{ if and (or .IsRepoAdmin .HasIssuesOrPullsWritePermission (not .Issue.IsLocked)) (not .Repository.IsArchived) }}
2020-04-11 00:01:41 +02:00
<div class="timeline-item comment form">
<a class="timeline-avatar" href="{{.SignedUser.HomeLink}}">
2020-12-03 19:46:11 +01:00
{{avatar .SignedUser}}
</a>
<div class="content">
<form class="ui segment form" id="comment-form" action="{{$.RepoLink}}/issues/{{.Issue.Index}}/comments" method="post">
{{template "repo/issue/comment_tab" .}}
{{.CsrfTokenHtml}}
<input id="status" name="status" type="hidden">
2020-05-14 21:15:21 +02:00
<div class="field footer">
<div class="text right">
{{if and (or .HasIssuesOrPullsWritePermission .IsIssuePoster) (not .DisableStatusChange)}}
{{if .Issue.IsClosed}}
<div id="status-button" class="ui green basic button" tabindex="6" data-status="{{.i18n.Tr "repo.issues.reopen_issue"}}" data-status-and-comment="{{.i18n.Tr "repo.issues.reopen_comment_issue"}}" data-status-val="reopen">
{{.i18n.Tr "repo.issues.reopen_issue"}}
</div>
{{else}}
<div id="status-button" class="ui red basic button" tabindex="6" data-status="{{.i18n.Tr "repo.issues.close_issue"}}" data-status-and-comment="{{.i18n.Tr "repo.issues.close_comment_issue"}}" data-status-val="close">
{{.i18n.Tr "repo.issues.close_issue"}}
</div>
{{end}}
{{end}}
2020-05-14 21:15:21 +02:00
<button class="ui green button" tabindex="5">
{{.i18n.Tr "repo.issues.create_comment"}}
</button>
</div>
</div>
</form>
</div>
</div>
{{ else if .Repository.IsArchived }}
<div class="ui warning message">
{{if .Issue.IsPull}}
{{.i18n.Tr "repo.archive.pull.nocomment"}}
{{else}}
{{.i18n.Tr "repo.archive.issue.nocomment"}}
{{end}}
</div>
{{ end }}
{{else}}
2019-01-23 19:58:38 +01:00
{{if .Repository.IsArchived}}
2015-12-07 23:30:52 +01:00
<div class="ui warning message">
2019-01-23 19:58:38 +01:00
{{if .Issue.IsPull}}
{{.i18n.Tr "repo.archive.pull.nocomment"}}
{{else}}
{{.i18n.Tr "repo.archive.issue.nocomment"}}
{{end}}
2015-12-07 23:30:52 +01:00
</div>
2019-01-23 19:58:38 +01:00
{{else}}
{{if .IsSigned}}
{{if .Repository.IsArchived}}
2020-04-11 00:01:41 +02:00
<div class="timeline-item comment form">
<a class="timeline-avatar" href="{{.SignedUser.HomeLink}}">
2020-12-03 19:46:11 +01:00
{{avatar .SignedUser}}
2019-01-23 19:58:38 +01:00
</a>
<div class="content">
<form class="ui segment form" id="comment-form" action="{{$.RepoLink}}/issues/{{.Issue.Index}}/comments" method="post">
{{template "repo/issue/comment_tab" .}}
{{.CsrfTokenHtml}}
<input id="status" name="status" type="hidden">
2020-05-14 21:15:21 +02:00
<div class="field footer">
<div class="text right">
{{if and (or .HasIssuesOrPullsWritePermission .IsIssuePoster) (not .DisableStatusChange)}}
{{if .Issue.IsClosed}}
<div id="status-button" class="ui green basic button" tabindex="6" data-status="{{.i18n.Tr "repo.issues.reopen_issue"}}" data-status-and-comment="{{.i18n.Tr "repo.issues.reopen_comment_issue"}}" data-status-val="reopen">
{{.i18n.Tr "repo.issues.reopen_issue"}}
</div>
{{else}}
<div id="status-button" class="ui red basic button" tabindex="6" data-status="{{.i18n.Tr "repo.issues.close_issue"}}" data-status-and-comment="{{.i18n.Tr "repo.issues.close_comment_issue"}}" data-status-val="close">
{{.i18n.Tr "repo.issues.close_issue"}}
</div>
{{end}}
2019-01-23 19:58:38 +01:00
{{end}}
2020-05-14 21:15:21 +02:00
<button class="ui green button" tabindex="5">
{{.i18n.Tr "repo.issues.create_comment"}}
</button>
</div>
2019-01-23 19:58:38 +01:00
</div>
</form>
</div>
</div>
{{end}}
2019-01-23 19:58:38 +01:00
{{else}}
<div class="ui warning message">
{{.i18n.Tr "repo.issues.sign_in_require_desc" .SignInLink | Safe}}
</div>
{{end}}
2015-12-07 23:30:52 +01:00
{{end}}
{{end}}
2015-12-07 23:30:52 +01:00
</ui>
2015-08-12 17:04:23 +08:00
</div>
{{ template "repo/issue/view_content/sidebar" . }}
2015-08-20 04:31:28 +08:00
</div>
<div class="hide" id="edit-content-form">
<div class="ui comment form">
2020-05-14 21:15:21 +02:00
<div class="ui top tabular menu">
<a class="active write item">{{$.i18n.Tr "write"}}</a>
2019-04-12 01:53:34 -04:00
<a class="preview item" data-url="{{$.Repository.APIURL}}/markdown" data-context="{{$.RepoLink}}">{{$.i18n.Tr "preview"}}</a>
2015-08-20 04:31:28 +08:00
</div>
2020-05-14 21:15:21 +02:00
<div class="field">
<div class="ui bottom active tab write">
<textarea tabindex="1" name="content"></textarea>
</div>
<div class="ui bottom tab preview markup">
2020-05-14 21:15:21 +02:00
{{$.i18n.Tr "loading"}}
</div>
2015-08-20 04:31:28 +08:00
</div>
{{if .IsAttachmentEnabled}}
<div class="field">
{{template "repo/upload" .}}
</div>
{{end}}
2020-05-14 21:15:21 +02:00
<div class="field footer">
<div class="text right edit">
<div class="ui basic blue cancel button" tabindex="3">{{.i18n.Tr "repo.issues.cancel"}}</div>
<div class="ui green save button" tabindex="2">{{.i18n.Tr "repo.issues.save"}}</div>
</div>
2015-12-07 23:30:52 +01:00
</div>
2015-08-20 04:31:28 +08:00
</div>
</div>
2021-01-21 14:51:17 +01:00
{{template "repo/issue/view_content/reference_issue_dialog" .}}
2015-08-20 04:31:28 +08:00
<div class="hide" id="no-content">
<span class="no-content">{{.i18n.Tr "repo.issues.no_content"}}</span>
2015-12-07 23:30:52 +01:00
</div>
2016-12-25 17:19:25 +01:00
<div class="ui small basic delete modal">
<div class="ui icon header">
2021-03-22 05:04:19 +01:00
{{svg "octicon-trash"}}
2018-04-10 05:43:37 +02:00
{{.i18n.Tr "repo.branch.delete" .HeadTarget }}
2016-12-25 17:19:25 +01:00
</div>
<div class="content">
2018-07-19 12:25:17 -03:00
<p>{{.i18n.Tr "repo.branch.delete_desc" | Str2html}}</p>
2016-12-25 17:19:25 +01:00
</div>
{{template "base/delete_modal_actions" .}}
2017-03-14 21:10:35 -04:00
</div>