29 lines
1.2 KiB
Text
29 lines
1.2 KiB
Text
<Layouts.admin flash={@flash} timezone={@timezone}>
|
|
<div class="space-y-6">
|
|
<div>
|
|
<h1 class="text-2xl font-bold text-gray-900 dark:text-white">All Organizations</h1>
|
|
<p class="text-gray-600 dark:text-gray-400">Manage organizations</p>
|
|
</div>
|
|
|
|
<div class="bg-white dark:bg-gray-800/50 rounded-lg border border-gray-200 dark:border-white/10">
|
|
<.table id="organizations" rows={@organizations}>
|
|
<:col :let={org} label="Name">{org.name}</:col>
|
|
<:col :let={org} label="Slug">{org.slug}</:col>
|
|
<:col :let={org} label="Members">{length(org.memberships)}</:col>
|
|
<:col :let={org} label="Created">
|
|
{ToweropsWeb.TimeHelpers.format_date(org.inserted_at, @timezone)}
|
|
</:col>
|
|
<:col :let={org} label="">
|
|
<button
|
|
phx-click="delete_org"
|
|
phx-value-id={org.id}
|
|
data-confirm="Are you sure? This will delete all sites, device, and data for this organization."
|
|
class="text-sm text-red-600 dark:text-red-400 hover:text-red-800 dark:hover:text-red-300"
|
|
>
|
|
Delete
|
|
</button>
|
|
</:col>
|
|
</.table>
|
|
</div>
|
|
</div>
|
|
</Layouts.admin>
|