blob: c88cac6ee16c5929a96ce0ac3837909e10c7629d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<form id="project-comment-form" class="card comment-form"
hx-post="/htmx/projects/{{ .Project.Slug }}/comments"
hx-target="#project-comments-wrapper" hx-swap="afterbegin show:top"
{{ if .IsOob }}
hx-swap-oob="true"
{{ end }}
>
<div class="card-block">
<textarea class="form-control" placeholder="Write a comment..." rows="3" name="comment"></textarea>
</div>
<div class="card-footer">
<img src="{{ .Project.User.Image }}" class="comment-author-img" />
<button class="btn btn-sm btn-primary">
Post Comment
</button>
</div>
</form>
|