Add frontend spec

This commit is contained in:
Jon Staab
2026-03-26 13:49:46 -07:00
parent 9f737a25cd
commit a2239cf20e
17 changed files with 609 additions and 4 deletions
+22
View File
@@ -0,0 +1,22 @@
# Admin Relay List
The admin relay list page shows all relays with search for operators.
```pug
page(path="/admin/relays", auth="required", role="admin", shell="app")
header
title Relays
controls
input(type="search", name="query", placeholder="Search relays...")
loading_state(message="Loading relays...")
error_state(message="Failed to load relays.")
list(empty="No relays found")
item(link="/admin/relays/:id")
title relay.info_name || relay.subdomain
subtitle {relay.subdomain}.spaces.coracle.social
tenant relay.tenant
status relay.status
```