mirror of
https://github.com/go-gitea/gitea.git
synced 2025-03-01 13:34:09 +08:00
17 lines
554 B
Handlebars
17 lines
554 B
Handlebars
![]() |
<!-- Pass in IsIssue (bool) if this conversation is attached to an Issue -->
|
||
|
<!-- Pass in IsCommit (bool) if this conversation is attached to a Commit -->
|
||
|
<div class="ui timeline">
|
||
|
{{if .IsIssue}}
|
||
|
{{template "repo/conversation/issue_header_comment" .}}
|
||
|
{{end}}
|
||
|
|
||
|
{{template "repo/conversation/comments" .}}
|
||
|
|
||
|
{{if .IsIssue}}
|
||
|
{{if and .Issue.IsPull (not $.Repository.IsArchived)}}
|
||
|
{{template "repo/issue/view_content/pull".}}
|
||
|
{{end}}
|
||
|
{{end}}
|
||
|
|
||
|
{{template "repo/conversation/comment_form" .}}
|
||
|
</div>
|