Files
sprintpadawan/templates/vote_form.html
T
2026-04-24 00:00:19 -06:00

14 lines
483 B
HTML

<div class="vote-form" id="vote-form-{{.Story.ID}}">
{{$userVote := .UserVote}}
{{$roomID := .RoomID}}
{{$storyID := .Story.ID}}
{{range scaleToOptions .Scale}}
<button type="button"
hx-post="/rooms/{{$roomID}}/vote"
hx-target="#vote-form-{{$storyID}}"
hx-swap="outerHTML"
hx-vals='{"story_id":"{{$storyID}}","value":"{{.}}"}'
class="vote-option {{if eq . $userVote}}vote-selected{{end}}">{{.}}</button>
{{end}}
</div>