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,75 +1,80 @@
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-6 col-sm-offset-0 col-md-offset-3 col-lg-offset-3 top-pad" >
<div class="card">
<div class="card-header bg-dark">
<h3 class="card-title">Plugin Info</h3>
</div>
<div class="card-body">
<div class="row">
<div class=" col-md-12 col-lg-12 ">
<table class="table table-user-primary">
<tbody>
<div class="container py-4">
<div class="row justify-content-center">
<div class="col-md-8">
{ADMIN_BREADCRUMBS}
<div class="card shadow">
<!-- Card Header -->
<div class="card-header text-center bg-dark text-white">
<h3 class="card-title mb-0">Plugin: {name}</h3>
</div>
<!-- Card Body -->
<div class="card-body">
<div class="row align-items-center">
<!-- Log Details -->
<table class="table table-borderless">
<tbody>
<tr>
<td align="left" width="200">Name:</td>
<td align="right">{name}</td>
<th scope="row" class="col-3">Name</th>
<td>{name}</td>
</tr>
<tr>
<td>Enabled:</td>
<td align="right">{enabled_txt}</td>
<th scope="row">Enabled</th>
<td>{enabled_txt}</td>
</tr>
<tr>
<td>Status:</td>
<td align="right">{installStatus}</td>
<th scope="row">Status</th>
<td>{installStatus}</td>
</tr>
<tr>
<td>Install Date:</td>
<td align="right">{DTC}{installDate}{/DTC}</td>
<th scope="row">Install Date</th>
<td>{DTC}{installDate}{/DTC}</td>
</tr>
<tr>
<td>Last Updated:</td>
<td align="right">{DTC}{lastUpdate}{/DTC}</td>
<th scope="row">Last Updated</th>
<td>{DTC}{lastUpdate}{/DTC}</td>
</tr>
<tr>
<td>File Version:</td>
<td align="right">{version}</td>
<th scope="row">File Version</th>
<td>{version}</td>
</tr>
<tr>
<td>Installed Version:</td>
<td align="right">{installedVersion}</td>
<th scope="row">Installed Version</th>
<td>{installedVersion}</td>
</tr>
<tr>
<td>Preferences Installed:</td>
<td align="right">{preferences_installed}</td>
<th scope="row">Preferences Installed</th>
<td>{preferences_installed}</td>
</tr>
<tr>
<td>Permissions Installed:</td>
<td align="right">{permissions_installed}</td>
<th scope="row">Permissions Installed</th>
<td>{permissions_installed}</td>
</tr>
<tr>
<td>Configs Installed:</td>
<td align="right">{configs_installed}</td>
<th scope="row">Configs Installed</th>
<td>{configs_installed}</td>
</tr>
<tr>
<td>Models Installed:</td>
<td align="right">{models_installed}</td>
<th scope="row">Models Installed</th>
<td>{models_installed}</td>
</tr>
<tr>
<td>Resources Installed:</td>
<td align="right">{resources_installed}</td>
<th scope="row">Resources Installed</th>
<td>{resources_installed}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="card-footer">
</tbody>
</table>
</div>
</div>
<!-- Admin Controls -->
<div class="card-footer text-center">
<a href="{ROOT_URL}admin/plugins/install/{name}" class="btn btn-sm btn-primary">Install</a>
<a href="{ROOT_URL}admin/plugins/enable/{name}" class="btn btn-sm btn-success">Enable</a>
<a href="{ROOT_URL}admin/plugins/disable/{name}" class="btn btn-sm btn-danger">Disable</a>
<a href="{ROOT_URL}admin/plugins/uninstall/{name}" class="btn btn-sm btn-danger">Uninstall</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>