Files
hikos/static/templates/kontaktliste.html
jbergner 51cc495d16 go
2025-06-13 11:28:48 +02:00

39 lines
1.5 KiB
HTML

{{ define "kontakt" }}
<div class="bottom" id="z-1">
<table>
<colgroup>
<col style="width: 27.5%">
<col style="width: 7.5%">
<col style="width: 7.5%">
<col style="width: 7.5%">
<col style="width: 5%">
<col style="width: 7.5%">
<col style="width: 10%">
</colgroup>
<thead>
<tr hx-post="/htmx/contact" hx-trigger="click delay:200ms" hx-target="#z-1" hx-swap="outerHTML" hx-vals='{"search": ""}'>
<th>Name <a href="/sso">(Anmelden)</a></th>
<th>Telefon</th>
<th>Mobil</th>
<th>Homeoffice</th>
<th>Amt</th>
<th>Raum</th>
<th>Gebäude</th>
</tr>
</thead>
<tbody>
{{ range .Contacts }}
<tr hx-post="/htmx/keywordbycontact" hx-trigger="click delay:200ms" hx-target="#z-2" hx-swap="outerHTML" hx-vals='{"cid": "{{ .Id }}"}'>
<td>{{ if .DisplayName }}{{ .DisplayName }}{{ end }}</td>
<td>{{ if .Phone }}{{ .Phone }}{{ end }}</td>
<td>{{ if .Mobile }}{{ .Mobile }}{{ end }}</td>
<td>{{ if .Homeoffice }}{{ .Homeoffice }}{{ end }}</td>
<td>{{ if .DepartmentId }}{{ .DepartmentId }}{{ end }}</td>
<td>{{ if .Room }}{{ .Room }}{{ end }}</td>
<td>{{ if .LocationId }}{{ .LocationId }}{{ end }}</td>
</tr>
{{ end }}
</tbody>
</table>
</div>
{{ end }}