2025-11-12 18:26:18 +00:00
|
|
|
{{define "view-controls"}}
|
|
|
|
|
<!-- Center: View controls with labels -->
|
|
|
|
|
<div class="view-controls-center">
|
|
|
|
|
<!-- CV Length toggle -->
|
2025-11-14 21:38:09 +00:00
|
|
|
<div class="selector-group" id="desktop-length-toggle">
|
2025-12-02 10:46:53 +00:00
|
|
|
<label class="selector-label" id="length-toggle-label">{{.UI.ViewControls.Length}}:</label>
|
2025-11-12 18:26:18 +00:00
|
|
|
<label class="icon-toggle">
|
2025-11-12 18:55:06 +00:00
|
|
|
<input type="checkbox"
|
|
|
|
|
id="lengthToggle"
|
2025-12-02 10:46:53 +00:00
|
|
|
aria-labelledby="length-toggle-label"
|
2025-11-12 18:55:06 +00:00
|
|
|
{{if eq .CVLengthClass "cv-long"}}checked{{end}}
|
2025-11-14 21:38:09 +00:00
|
|
|
hx-post="/toggle/length?lang={{.Lang}}"
|
2025-11-15 15:59:54 +00:00
|
|
|
hx-swap="none"
|
2025-11-16 14:03:22 +00:00
|
|
|
_="on change call toggleCVLength(my.checked)">
|
2025-11-12 18:26:18 +00:00
|
|
|
<span class="icon-toggle-slider">
|
|
|
|
|
<iconify-icon icon="mdi:file-document-outline" width="16" height="16" class="icon-left"></iconify-icon>
|
|
|
|
|
<iconify-icon icon="mdi:file-document-multiple-outline" width="16" height="16" class="icon-right"></iconify-icon>
|
|
|
|
|
</span>
|
|
|
|
|
</label>
|
2025-11-15 19:01:15 +00:00
|
|
|
<iconify-icon icon="mdi:loading"
|
|
|
|
|
class="htmx-indicator spinning small light"
|
|
|
|
|
width="14"
|
|
|
|
|
height="14"
|
|
|
|
|
aria-label="Saving"></iconify-icon>
|
2025-11-12 18:26:18 +00:00
|
|
|
</div>
|
|
|
|
|
|
2025-11-15 18:42:35 +00:00
|
|
|
<!-- Icon toggle -->
|
|
|
|
|
<div class="selector-group" id="desktop-icon-toggle">
|
2025-12-02 10:46:53 +00:00
|
|
|
<label class="selector-label" id="icon-toggle-label">{{.UI.ViewControls.Icons}}:</label>
|
2025-11-12 18:26:18 +00:00
|
|
|
<label class="icon-toggle">
|
2025-11-12 18:55:06 +00:00
|
|
|
<input type="checkbox"
|
2025-11-15 18:42:35 +00:00
|
|
|
id="iconToggle"
|
2025-12-02 10:46:53 +00:00
|
|
|
aria-labelledby="icon-toggle-label"
|
2025-11-15 18:42:35 +00:00
|
|
|
{{if .ShowIcons}}checked{{end}}
|
|
|
|
|
hx-post="/toggle/icons?lang={{.Lang}}"
|
2025-11-15 15:59:54 +00:00
|
|
|
hx-swap="none"
|
2025-11-16 14:03:22 +00:00
|
|
|
_="on change call toggleIcons(my.checked)">
|
2025-11-12 18:26:18 +00:00
|
|
|
<span class="icon-toggle-slider">
|
|
|
|
|
<iconify-icon icon="mdi:image-off-outline" width="16" height="16" class="icon-left"></iconify-icon>
|
|
|
|
|
<iconify-icon icon="mdi:image-multiple-outline" width="16" height="16" class="icon-right"></iconify-icon>
|
|
|
|
|
</span>
|
|
|
|
|
</label>
|
2025-11-15 19:01:15 +00:00
|
|
|
<iconify-icon icon="mdi:loading"
|
|
|
|
|
class="htmx-indicator spinning small light"
|
|
|
|
|
width="14"
|
|
|
|
|
height="14"
|
|
|
|
|
aria-label="Saving"></iconify-icon>
|
2025-11-12 18:26:18 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Theme toggle -->
|
2025-11-14 21:38:09 +00:00
|
|
|
<div class="selector-group" id="desktop-theme-toggle">
|
2025-12-02 10:46:53 +00:00
|
|
|
<label class="selector-label" id="theme-toggle-label">{{.UI.ViewControls.View}}:</label>
|
2025-11-12 18:26:18 +00:00
|
|
|
<label class="icon-toggle">
|
2025-11-12 18:55:06 +00:00
|
|
|
<input type="checkbox"
|
|
|
|
|
id="themeToggle"
|
2025-12-02 10:46:53 +00:00
|
|
|
aria-labelledby="theme-toggle-label"
|
2025-11-12 18:55:06 +00:00
|
|
|
{{if .ThemeClean}}checked{{end}}
|
2025-11-14 21:38:09 +00:00
|
|
|
hx-post="/toggle/theme?lang={{.Lang}}"
|
2025-11-15 15:59:54 +00:00
|
|
|
hx-swap="none"
|
2025-11-16 14:03:22 +00:00
|
|
|
_="on change call toggleTheme(my.checked)">
|
2025-11-12 18:26:18 +00:00
|
|
|
<span class="icon-toggle-slider">
|
|
|
|
|
<iconify-icon icon="mdi:page-layout-sidebar-left" width="16" height="16" class="icon-left"></iconify-icon>
|
|
|
|
|
<iconify-icon icon="mdi:page-layout-body" width="16" height="16" class="icon-right"></iconify-icon>
|
|
|
|
|
</span>
|
|
|
|
|
</label>
|
2025-11-15 19:01:15 +00:00
|
|
|
<iconify-icon icon="mdi:loading"
|
|
|
|
|
class="htmx-indicator spinning small light"
|
|
|
|
|
width="14"
|
|
|
|
|
height="14"
|
|
|
|
|
aria-label="Saving"></iconify-icon>
|
2025-11-12 18:26:18 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{{end}}
|