Files
golias/components/room.html
2025-05-08 12:31:44 +03:00

23 lines
477 B
HTML

{{define "room"}}
<div id="hello-user">
<p>Hello {{.State.Username}}</p>
</div>
<hr />
<div class="flex justify-center">
<!-- Left Panel -->
{{template "teamlist" .Room.BlueGuessers}}
{{if eq .State.Team ""}}
{{template "teampew" "blue"}}
{{end}}
<!-- Right Panel -->
{{if eq .State.Team ""}}
{{template "teampew" "red"}}
{{end}}
{{template "teamlist" .Room.RedGuessers}}
</div>
<hr />
<div id="cardtable">
{{template "cardtable" .Room}}
</div>
{{end}}