Bugfixes and Bootstrap 5 finalized

This commit is contained in:
Joey Kimsey
2024-12-17 22:57:55 -05:00
parent 2220c6cda3
commit a859fb7ace
79 changed files with 2011 additions and 1597 deletions

View File

@ -1,20 +1,22 @@
<legend>Tokens</legend>
{PAGINATION}
<div class="context-main-bg context-main p-3">
<legend class="text-center">Tokens</legend>
<hr>
{ADMIN_BREADCRUMBS}
<table class="table table-striped">
<thead>
<tr>
<th style="width: 15%">ID</th>
<th style="width: 45%">Name</th>
<th style="width: 55%">Name</th>
<th style="width: 25%">Type</th>
<th style="width: 15%">Delete</th>
<th style="width: 10%">Delete</th>
<th style="width: 10%">Delete</th>
</tr>
</thead>
<tbody>
{LOOP}
<tr>
<td align="center">{ID}</td>
<td><a href='{ROOT_URL}admin/tokens/view/{ID}'>{name}</a></td>
<td>{token_type}</td>
<td><a href="{ROOT_URL}admin/tokens/edit/{ID}" class="btn btn-sm btn-warning"><i class="fa fa-fw fa-pencil"></i></a></td>
<td><a href="{ROOT_URL}admin/tokens/delete/{ID}" class="btn btn-sm btn-danger"><i class="fa fa-fw fa-trash"></i></a></td>
</tr>
{/LOOP}
@ -27,4 +29,5 @@
{/ALT}
</tbody>
</table>
<a href="{ROOT_URL}admin/tokens/create" class="btn btn-sm btn-primary">Create</a>
<a href="{ROOT_URL}admin/tokens/create" class="btn btn-sm btn-primary">Create</a>
</div>