20 lines
807 B
HTML
20 lines
807 B
HTML
{{define "power_strip"}}
|
|
<div class="power-strip-outlets">
|
|
{{range .Device.Ports}}
|
|
{{$pid := .ID}}
|
|
{{$color := "#333"}}{{$bg := ""}}
|
|
{{range $.Connections}}{{if and .Port1 .Port2}}{{if eq .Port1.ID $pid}}{{$color = .Color}}{{$bg = .Color}}{{else if eq .Port2.ID $pid}}{{$color = .Color}}{{$bg = .Color}}{{end}}{{end}}{{end}}
|
|
<span class="outlet {{if ne $bg ""}}outlet-used{{end}}"
|
|
style="{{if ne $bg ""}}border-color:{{$color}};background:{{$color}}22{{end}}"
|
|
hx-get="/connections/{{.ID}}"
|
|
hx-target="#modal-content"
|
|
hx-trigger="click"
|
|
onclick="openModal()"
|
|
title="Outlet: {{.Name}}">
|
|
<span class="outlet-icon">🔌</span>
|
|
<span class="outlet-label">{{.Name}}</span>
|
|
</span>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|