blob: 2f401deb5c9efa1d444c0cb7353b573e5a4d6e95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<div id="project-comments-wrapper">
{{ range $comment := .Project.Comments }}
{{ template "projects/partials/comments-card" Dict "Comment" $comment }}
{{ end }}
</div>
{{ if .IsAuthenticated }}
<div id="form-message"></div>
{{ template "projects/partials/comments-form" . }}
{{ else }}
<div>
<a href="/htmx/sign-in" hx-get="/htmx/sign-in" hx-target="#app-body"
hx-push-url="/sign-in"
>
Sign in
</a>
or
<a href="/htmx/sign-up" hx-get="/htmx/sign-up" hx-target="#app-body"
hx-push-url="/sign-up"
>
sign up
</a>
to add comments on this project.
</div>
{{ end }}
|