Clarify server nav labels (Default Server Interface vs All Servers)

No route/logic changes - pure label cleanup so the legacy default-server
editor and the multi-server management page are no longer confusable.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
sysops
2026-07-12 12:54:29 +02:00
co-authored by Claude Sonnet 5
parent 144cb2982d
commit 2212141ba3
4 changed files with 118 additions and 7 deletions
+111
View File
@@ -1342,3 +1342,114 @@ Keine Commits in dieser Session.
- templates/servers.html | 112 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - templates/servers.html | 112 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
--- ---
## 2026-07-11 23:53 23:53 (0m)
**Beschreibung:** Claude Code Session
**Projekt:** wireguard-ui-multi
### Commits
- 31f504e Document current product capabilities (multi-server CRUD, per-server access control, confirmed gaps)
### Geänderte Dateien
- DEVLOG.md | 512 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
---
## 2026-07-11 23:54 23:55 (1m)
**Beschreibung:** Claude Code Session
**Projekt:** wireguard-ui-multi
### Commits
Keine Commits in dieser Session.
### Geänderte Dateien
- DEVLOG.md | 512 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
---
## 2026-07-11 23:56 23:57 (0m)
**Beschreibung:** Claude Code Session
**Projekt:** wireguard-ui-multi
### Commits
Keine Commits in dieser Session.
### Geänderte Dateien
- DEVLOG.md | 512 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
---
## 2026-07-12 00:00 00:00 (0m)
**Beschreibung:** Claude Code Session
**Projekt:** wireguard-ui-multi
### Commits
Keine Commits in dieser Session.
### Geänderte Dateien
- DEVLOG.md | 512 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
---
## 2026-07-12 00:03 00:05 (1m)
**Beschreibung:** Claude Code Session
**Projekt:** wireguard-ui-multi
### Commits
Keine Commits in dieser Session.
### Geänderte Dateien
- DEVLOG.md | 512 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
---
## 2026-07-12 00:06 00:13 (6m)
**Beschreibung:** Claude Code Session
**Projekt:** wireguard-ui-multi
### Commits
Keine Commits in dieser Session.
### Geänderte Dateien
- DEVLOG.md | 512 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
---
## 2026-07-12 00:14 00:17 (3m)
**Beschreibung:** Claude Code Session
**Projekt:** wireguard-ui-multi
### Commits
- 144cb29 Add manual, optionally-encrypted backup download (no auto-upload)
### Geänderte Dateien
- backup/archive.go | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- backup/encrypt.go | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- handler/routes.go | 37 +++++++++++++++++++++++++++++++++++++
- main.go | 1 +
- templates/global_settings.html | 93 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
---
## 2026-07-12 12:52 12:53 (0m)
**Beschreibung:** Claude Code Session
**Projekt:** wireguard-ui-multi
### Commits
Keine Commits in dieser Session.
### Geänderte Dateien
- backup/archive.go | 61 +++++++++++++++++++++++++++
- backup/encrypt.go | 85 ++++++++++++++++++++++++++++++++++++++
- handler/routes.go | 37 +++++++++++++++++
- main.go | 1 +
- templates/global_settings.html | 93 ++++++++++++++++++++++++++++++++++++++++++
---
## 2026-07-12 12:54 12:54 (0m)
**Beschreibung:** Claude Code Session
**Projekt:** wireguard-ui-multi
### Commits
Keine Commits in dieser Session.
### Geänderte Dateien
- backup/archive.go | 61 +++++++++++++++++++++++++++
- backup/encrypt.go | 85 ++++++++++++++++++++++++++++++++++++++
- handler/routes.go | 37 +++++++++++++++++
- main.go | 1 +
- templates/global_settings.html | 93 ++++++++++++++++++++++++++++++++++++++++++
---
+2 -2
View File
@@ -132,7 +132,7 @@
<a href="{{.basePath}}/wg-server" class="nav-link {{if eq .baseData.Active "wg-server" }}active{{end}}"> <a href="{{.basePath}}/wg-server" class="nav-link {{if eq .baseData.Active "wg-server" }}active{{end}}">
<i class="nav-icon fas fa-server"></i> <i class="nav-icon fas fa-server"></i>
<p> <p>
Wireguard Server Default Server Interface
</p> </p>
</a> </a>
</li> </li>
@@ -143,7 +143,7 @@
<a href="{{.basePath}}/servers-settings" class="nav-link {{if eq .baseData.Active "servers" }}active{{end}}"> <a href="{{.basePath}}/servers-settings" class="nav-link {{if eq .baseData.Active "servers" }}active{{end}}">
<i class="nav-icon fas fa-server"></i> <i class="nav-icon fas fa-server"></i>
<p> <p>
Servers All Servers
</p> </p>
</a> </a>
</li> </li>
+3 -3
View File
@@ -1,5 +1,5 @@
{{define "title"}} {{define "title"}}
Wireguard Server Default Server Interface
{{end}} {{end}}
{{define "top_css"}} {{define "top_css"}}
@@ -10,13 +10,13 @@ Wireguard Server
{{end}} {{end}}
{{define "page_title"}} {{define "page_title"}}
Wireguard Server Settings Default Server Interface Settings
{{end}} {{end}}
{{define "page_content"}} {{define "page_content"}}
<section class="content"> <section class="content">
<div class="container-fluid"> <div class="container-fluid">
<!-- <h5 class="mt-4 mb-2">Wireguard Server</h5> --> <!-- <h5 class="mt-4 mb-2">Default Server Interface</h5> -->
<div class="row"> <div class="row">
<!-- left column --> <!-- left column -->
<div class="col-md-6"> <div class="col-md-6">
+2 -2
View File
@@ -1,5 +1,5 @@
{{define "title"}} {{define "title"}}
Servers All Servers
{{end}} {{end}}
{{define "top_css"}} {{define "top_css"}}
@@ -10,7 +10,7 @@ Servers
{{end}} {{end}}
{{define "page_title"}} {{define "page_title"}}
Servers All Servers
{{end}} {{end}}
{{define "page_content"}} {{define "page_content"}}