46 lines
1.6 KiB
PHP
46 lines
1.6 KiB
PHP
<?php require __DIR__ . '/../partials/layout-top.php'; ?>
|
|
|
|
<section class="page-head inline-head">
|
|
<div>
|
|
<span class="eyebrow">Betrieb</span>
|
|
<h1>Plattform-Dashboard</h1>
|
|
<p>Ueberblick ueber Mandanten, Paketstand und direkte Einstiege in die Kundenumgebungen.</p>
|
|
</div>
|
|
<form method="post" action="/admin/logout">
|
|
<?= csrf_field($csrf) ?>
|
|
<button class="button button-secondary" type="submit">Abmelden</button>
|
|
</form>
|
|
</section>
|
|
|
|
<section class="table-card">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Mandant</th>
|
|
<th>Paket</th>
|
|
<th>Status</th>
|
|
<th>Mitglieder</th>
|
|
<th>Produkte</th>
|
|
<th>Aktion</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($tenants as $tenant): ?>
|
|
<tr>
|
|
<td>
|
|
<strong><?= e($tenant['name']) ?></strong><br>
|
|
<small>/t/<?= e($tenant['slug']) ?></small>
|
|
</td>
|
|
<td><?= e(ucfirst($tenant['plan'])) ?></td>
|
|
<td><?= e($tenant['status']) ?></td>
|
|
<td><?= e((string) $tenant['member_count']) ?></td>
|
|
<td><?= e((string) $tenant['product_count']) ?></td>
|
|
<td><a class="text-link" href="<?= e(tenant_url($tenant['slug'])) ?>">Tenant oeffnen</a></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
|
|
<?php require __DIR__ . '/../partials/layout-bottom.php'; ?>
|