aboutsummaryrefslogtreecommitdiff
path: root/internal/admin/templates/layout.html
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-07-12 19:23:19 -0400
committerhistoria <[not public]>2026-07-12 19:23:19 -0400
commitbeb0b73a9e56fdc717d55bbf1a1c7c5b49d4c6a4 (patch)
treefa5fb802937f631c45c46851328b4839a4b35949 /internal/admin/templates/layout.html
parent2bacbb08d1ac67c4f63ee535728cd4e8760e3211 (diff)
downloadthehouseoficarus-beb0b73a9e56fdc717d55bbf1a1c7c5b49d4c6a4.tar.gz
feat: remains drop is optional
Diffstat (limited to 'internal/admin/templates/layout.html')
-rw-r--r--internal/admin/templates/layout.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/admin/templates/layout.html b/internal/admin/templates/layout.html
index f6bd405..2a1ef36 100644
--- a/internal/admin/templates/layout.html
+++ b/internal/admin/templates/layout.html
@@ -19,10 +19,10 @@
<a href="/editor/hazards" class="{{if eq .Page "hazards"}}active{{end}}">Hazards</a>
<a href="/editor/techs" class="{{if eq .Page "techs"}}active{{end}}">Techs</a>
<a href="/editor/modules" class="{{if eq .Page "modules"}}active{{end}}">Modules</a>
+ <a href="/editor/triggers" class="{{if eq .Page "triggers"}}active{{end}}">Triggers</a>
<a href="/editor/players" class="{{if eq .Page "players"}}active{{end}}">Players</a>
<a href="/editor/dashboard" class="{{if eq .Page "dashboard"}}active{{end}}">Dashboard</a>
<a href="/editor/files" class="{{if eq .Page "files"}}active{{end}}">Files</a>
- <a href="/editor/triggers" class="{{if eq .Page "triggers"}}active{{end}}">Triggers</a>
<div class="undo-bar">
<span class="undo-label"></span>
<button class="undo-btn" onclick="doUndo()" title="">⟲ Undo</button>
@@ -39,10 +39,10 @@
{{else if eq .Page "hazards"}}{{template "body-hazards" .}}
{{else if eq .Page "techs"}}{{template "body-techs" .}}
{{else if eq .Page "modules"}}{{template "body-modules" .}}
+{{else if eq .Page "triggers"}}{{template "body-triggers" .}}
{{else if eq .Page "players"}}{{template "body-players" .}}
{{else if eq .Page "dashboard"}}{{template "body-dashboard" .}}
{{else if eq .Page "files"}}{{template "body-files" .}}
-{{else if eq .Page "triggers"}}{{template "body-triggers" .}}
{{else if eq .Page "duplicate-rooms"}}{{template "body-duplicate-rooms" .}}
{{else}}<p style="color:#888;text-align:center;margin-top:60px">Unknown page: {{.Page}}</p>{{end}}
</body>