Monorepo for Tangled
at 9259beb17e5eb25f45d05c4d541415f1b6639829 16 lines 625 B view raw
1{{ define "repo/issues/fragments/replyIssueCommentPlaceholder" }} 2 <div class="py-2 px-6 border-t flex gap-2 items-center border-gray-300 dark:border-gray-700"> 3 {{ if .LoggedInUser }} 4 {{ template "user/fragments/pic" (list .LoggedInUser.Did "size-8 mr-1") }} 5 {{ end }} 6 <input 7 class="w-full p-0 border-none focus:outline-none bg-transparent" 8 placeholder="Leave a reply..." 9 hx-get="/{{ .RepoInfo.FullName }}/issues/{{ .Issue.IssueId }}/comment/{{ .Comment.Id }}/reply" 10 hx-trigger="focus" 11 hx-target="closest div" 12 hx-swap="outerHTML" 13 > 14 </input> 15 </div> 16{{ end }}