2017-12-31 06:17:52 +05:30
|
|
|
<div class="ui stackable grid">
|
2015-08-12 14:34:23 +05:30
|
|
|
{{if .Flash}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="sixteen wide column">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{if not .Issue.IsPull}}
|
|
|
|
{{template "repo/issue/view_title" .}}
|
|
|
|
{{end}}
|
|
|
|
|
2017-12-11 10:07:04 +05:30
|
|
|
{{ $createdStr:= TimeSinceUnix .Issue.CreatedUnix $.Lang }}
|
2019-07-07 03:07:46 +05:30
|
|
|
<div class="twelve wide column comment-list prevent-before-timeline">
|
2020-04-11 03:31:41 +05:30
|
|
|
<ui class="ui timeline">
|
|
|
|
<div id="{{.Issue.HashTag}}" class="timeline-item comment first">
|
2019-07-08 07:44:12 +05:30
|
|
|
{{if .Issue.OriginalAuthor }}
|
2020-04-11 03:31:41 +05:30
|
|
|
<span class="timeline-avatar"><img src="/img/avatar_default.png"></span>
|
2019-07-08 07:44:12 +05:30
|
|
|
{{else}}
|
2020-04-11 03:31:41 +05:30
|
|
|
<a class="timeline-avatar" {{if gt .Issue.Poster.ID 0}}href="{{.Issue.Poster.HomeLink}}"{{end}}>
|
2020-12-04 00:16:11 +05:30
|
|
|
{{avatar .Issue.Poster}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</a>
|
2019-07-08 07:44:12 +05:30
|
|
|
{{end}}
|
2020-11-08 04:45:09 +05:30
|
|
|
<div class="content comment-container">
|
2020-11-01 03:45:11 +05:30
|
|
|
<div class="ui top attached header comment-header df ac sb">
|
|
|
|
<div class="comment-header-left df ac">
|
2020-10-31 18:47:52 +05:30
|
|
|
{{if .Issue.OriginalAuthor }}
|
|
|
|
<span class="text black">
|
|
|
|
<i class="fa {{MigrationIcon .Repository.GetOriginalURLHostname}}" aria-hidden="true"></i>
|
|
|
|
{{ .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>
|
2020-11-01 03:45:11 +05:30
|
|
|
<div class="comment-header-right actions df ac">
|
2020-10-31 18:47:52 +05:30
|
|
|
{{if not $.Repository.IsArchived}}
|
2020-09-10 23:39:14 +05:30
|
|
|
{{if gt .Issue.ShowTag 0}}
|
2020-10-22 05:17:16 +05:30
|
|
|
<div class="ui basic label">
|
2020-09-10 23:39:14 +05:30
|
|
|
{{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 05:13:56 +05:30
|
|
|
{{template "repo/issue/view_content/add_reaction" Dict "ctx" $ "ActionURL" (Printf "%s/issues/%d/reactions" $.RepoLink .Issue.Index)}}
|
2020-06-05 15:40:10 +05:30
|
|
|
{{template "repo/issue/view_content/context_menu" Dict "ctx" $ "item" .Issue "delete" false "diff" false "IsCommentPoster" $.IsIssuePoster}}
|
2020-10-31 18:47:52 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
2015-08-12 14:34:23 +05:30
|
|
|
</div>
|
2020-11-06 01:04:04 +05:30
|
|
|
<div class="ui attached segment comment-body">
|
2020-05-01 23:28:45 +05:30
|
|
|
<div class="render-content markdown">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{if .Issue.RenderedContent}}
|
|
|
|
{{.Issue.RenderedContent|Str2html}}
|
|
|
|
{{else}}
|
|
|
|
<span class="no-content">{{.i18n.Tr "repo.issues.no_content"}}</span>
|
|
|
|
{{end}}
|
2015-08-12 14:34:23 +05:30
|
|
|
</div>
|
2019-11-20 00:03:42 +05:30
|
|
|
<div id="comment-{{.Issue.ID}}" class="raw-content hide">{{.Issue.Content}}</div>
|
2019-10-15 17:49:32 +05:30
|
|
|
<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>
|
2020-12-14 00:42:27 +05:30
|
|
|
{{if .Issue.Attachments}}
|
|
|
|
{{template "repo/issue/view_content/attachments" Dict "ctx" $ "Attachments" .Issue.Attachments "Content" .Issue.RenderedContent}}
|
|
|
|
{{end}}
|
2015-08-12 14:34:23 +05:30
|
|
|
</div>
|
2017-12-04 04:44:26 +05:30
|
|
|
{{$reactions := .Issue.Reactions.GroupByType}}
|
|
|
|
{{if $reactions}}
|
|
|
|
<div class="ui attached segment reactions">
|
2019-12-28 05:13:56 +05:30
|
|
|
{{template "repo/issue/view_content/reactions" Dict "ctx" $ "ActionURL" (Printf "%s/issues/%d/reactions" $.RepoLink .Issue.Index) "Reactions" $reactions}}
|
2017-12-04 04:44:26 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-12 16:14:09 +05:30
|
|
|
|
2017-03-17 11:27:43 +05:30
|
|
|
{{ template "repo/issue/view_content/comments" . }}
|
2015-08-13 20:51:43 +05:30
|
|
|
|
2019-01-24 00:28:38 +05:30
|
|
|
{{if and .Issue.IsPull (not $.Repository.IsArchived)}}
|
2017-03-17 11:27:43 +05:30
|
|
|
{{ template "repo/issue/view_content/pull". }}
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
2019-02-19 02:25:04 +05:30
|
|
|
{{if .IsSigned}}
|
2020-04-17 02:56:24 +05:30
|
|
|
{{ if and (or .IsRepoAdmin .HasIssuesOrPullsWritePermission (not .Issue.IsLocked)) (not .Repository.IsArchived) }}
|
2020-04-11 03:31:41 +05:30
|
|
|
<div class="timeline-item comment form">
|
|
|
|
<a class="timeline-avatar" href="{{.SignedUser.HomeLink}}">
|
2020-12-04 00:16:11 +05:30
|
|
|
{{avatar .SignedUser}}
|
2019-02-19 02:25:04 +05:30
|
|
|
</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-15 00:45:21 +05:30
|
|
|
<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-02-19 02:25:04 +05:30
|
|
|
{{end}}
|
2020-05-15 00:45:21 +05:30
|
|
|
<button class="ui green button" tabindex="5">
|
|
|
|
{{.i18n.Tr "repo.issues.create_comment"}}
|
|
|
|
</button>
|
|
|
|
</div>
|
2019-02-19 02:25:04 +05:30
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-07-09 00:48:09 +05:30
|
|
|
{{ 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>
|
2019-02-19 02:25:04 +05:30
|
|
|
{{ end }}
|
|
|
|
{{else}}
|
2019-01-24 00:28:38 +05:30
|
|
|
{{if .Repository.IsArchived}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="ui warning message">
|
2019-01-24 00:28:38 +05:30
|
|
|
{{if .Issue.IsPull}}
|
|
|
|
{{.i18n.Tr "repo.archive.pull.nocomment"}}
|
|
|
|
{{else}}
|
|
|
|
{{.i18n.Tr "repo.archive.issue.nocomment"}}
|
|
|
|
{{end}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2019-01-24 00:28:38 +05:30
|
|
|
{{else}}
|
|
|
|
{{if .IsSigned}}
|
2019-06-29 14:48:49 +05:30
|
|
|
{{if .Repository.IsArchived}}
|
2020-04-11 03:31:41 +05:30
|
|
|
<div class="timeline-item comment form">
|
|
|
|
<a class="timeline-avatar" href="{{.SignedUser.HomeLink}}">
|
2020-12-04 00:16:11 +05:30
|
|
|
{{avatar .SignedUser}}
|
2019-01-24 00:28:38 +05:30
|
|
|
</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-15 00:45:21 +05:30
|
|
|
<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-24 00:28:38 +05:30
|
|
|
{{end}}
|
2020-05-15 00:45:21 +05:30
|
|
|
<button class="ui green button" tabindex="5">
|
|
|
|
{{.i18n.Tr "repo.issues.create_comment"}}
|
|
|
|
</button>
|
|
|
|
</div>
|
2019-01-24 00:28:38 +05:30
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-06-29 14:48:49 +05:30
|
|
|
{{end}}
|
2019-01-24 00:28:38 +05:30
|
|
|
{{else}}
|
|
|
|
<div class="ui warning message">
|
|
|
|
{{.i18n.Tr "repo.issues.sign_in_require_desc" .SignInLink | Safe}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
2019-02-19 02:25:04 +05:30
|
|
|
{{end}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</ui>
|
2015-08-12 14:34:23 +05:30
|
|
|
</div>
|
|
|
|
|
2017-03-17 11:27:43 +05:30
|
|
|
{{ template "repo/issue/view_content/sidebar" . }}
|
2015-08-20 02:01:28 +05:30
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="hide" id="edit-content-form">
|
|
|
|
<div class="ui comment form">
|
2020-05-15 00:45:21 +05:30
|
|
|
<div class="ui top tabular menu">
|
2018-08-06 10:13:22 +05:30
|
|
|
<a class="active write item">{{$.i18n.Tr "write"}}</a>
|
2019-04-12 11:23:34 +05:30
|
|
|
<a class="preview item" data-url="{{$.Repository.APIURL}}/markdown" data-context="{{$.RepoLink}}">{{$.i18n.Tr "preview"}}</a>
|
2015-08-20 02:01:28 +05:30
|
|
|
</div>
|
2020-05-15 00:45:21 +05:30
|
|
|
<div class="field">
|
|
|
|
<div class="ui bottom active tab write">
|
|
|
|
<textarea tabindex="1" name="content"></textarea>
|
|
|
|
</div>
|
|
|
|
<div class="ui bottom tab preview markdown">
|
|
|
|
{{$.i18n.Tr "loading"}}
|
|
|
|
</div>
|
2015-08-20 02:01:28 +05:30
|
|
|
</div>
|
2019-10-15 17:49:32 +05:30
|
|
|
{{if .IsAttachmentEnabled}}
|
2020-10-05 11:19:33 +05:30
|
|
|
<div class="field">
|
|
|
|
<div class="comment-files"></div>
|
|
|
|
{{template "repo/upload" .}}
|
2019-10-15 17:49:32 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-05-15 00:45:21 +05:30
|
|
|
<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-08 04:00:52 +05:30
|
|
|
</div>
|
2015-08-20 02:01:28 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="hide" id="no-content">
|
|
|
|
<span class="no-content">{{.i18n.Tr "repo.issues.no_content"}}</span>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2016-12-25 21:49:25 +05:30
|
|
|
|
|
|
|
<div class="ui small basic delete modal">
|
|
|
|
<div class="ui icon header">
|
2020-10-22 02:37:33 +05:30
|
|
|
{{svg "octicon-trashcan"}}
|
2018-04-10 09:13:37 +05:30
|
|
|
{{.i18n.Tr "repo.branch.delete" .HeadTarget }}
|
2016-12-25 21:49:25 +05:30
|
|
|
</div>
|
|
|
|
<div class="content">
|
2018-07-19 20:55:17 +05:30
|
|
|
<p>{{.i18n.Tr "repo.branch.delete_desc" | Str2html}}</p>
|
2016-12-25 21:49:25 +05:30
|
|
|
</div>
|
|
|
|
{{template "base/delete_modal_actions" .}}
|
2017-03-15 06:40:35 +05:30
|
|
|
</div>
|