Renamed theme tab to customisation tab. Added basic theme crud

This commit is contained in:
2025-07-21 22:16:34 +02:00
parent 2c9a87bf3e
commit a480ae9c50
10 changed files with 407 additions and 163 deletions

View File

@@ -27,13 +27,12 @@
<DataTableColumn TItem="UserResponse">
<ColumnTemplate>
<div class="flex justify-end">
<a href="/admin/users/@(context.Id)" class="text-primary mr-2 sm:mr-3">
<i class="icon-pencil text-base"></i>
<a href="/admin/users/@(context.Id)" class="mr-2 sm:mr-3">
<i class="icon-pencil text-primary"></i>
</a>
<a href="#" @onclick="() => Delete(context)" @onclick:preventDefault
class="text-error">
<i class="icon-trash text-base"></i>
<a href="#" @onclick="() => Delete(context)" @onclick:preventDefault>
<i class="icon-trash text-error"></i>
</a>
</div>
</ColumnTemplate>