refactor: show organisation slug after name in header

Display the organisation slug in small muted text directly after the
organisation name on both the organizer page (/organisation) and the
platform admin detail page (/platform/organisations/[id]).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-15 01:08:31 +02:00
parent b69d7c9488
commit c1bacb5ee9
2 changed files with 3 additions and 2 deletions

View File

@@ -225,6 +225,7 @@ function confirmRevokeInvitation() {
<div class="d-flex align-center gap-x-3">
<h4 class="text-h4">
{{ organisation.name }}
<span class="text-body-2 text-medium-emphasis font-weight-regular ms-2">{{ organisation.slug }}</span>
</h4>
<VChip
:color="statusColor[organisation.billing_status]"

View File

@@ -246,6 +246,7 @@ function formatDate(iso: string): string {
<div class="d-flex align-center gap-x-2">
<h4 class="text-h4">
{{ org.name }}
<span class="text-body-2 text-medium-emphasis font-weight-regular ms-2">{{ org.slug }}</span>
</h4>
<VChip
:color="billingStatusColor[org.billing_status]"
@@ -255,8 +256,7 @@ function formatDate(iso: string): string {
</VChip>
</div>
<span class="text-caption text-medium-emphasis">
{{ org.slug }}
&middot; Aangemaakt op {{ formatDate(org.created_at) }}
Aangemaakt op {{ formatDate(org.created_at) }}
&middot; Gewijzigd op {{ formatDate(org.updated_at) }}
</span>
</div>