33 lines
1.3 KiB
Text
33 lines
1.3 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">{t("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={t("Name")}>{org.name}</:col>
|
|
<:col :let={org} label={t("Slug")}>{org.slug}</:col>
|
|
<:col :let={org} label={t("Members")}>{length(org.memberships)}</:col>
|
|
<:col :let={org} label={t("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={
|
|
t(
|
|
"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"
|
|
>
|
|
{t("Delete")}
|
|
</button>
|
|
</:col>
|
|
</.table>
|
|
</div>
|
|
</div>
|
|
</Layouts.admin>
|