Files
thetempusproject/app/views/admin/modules/plugins/view.html
2024-12-17 22:57:55 -05:00

80 lines
2.7 KiB
HTML

<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>
<th scope="row" class="col-3">Name</th>
<td>{name}</td>
</tr>
<tr>
<th scope="row">Enabled</th>
<td>{enabled_txt}</td>
</tr>
<tr>
<th scope="row">Status</th>
<td>{installStatus}</td>
</tr>
<tr>
<th scope="row">Install Date</th>
<td>{DTC}{installDate}{/DTC}</td>
</tr>
<tr>
<th scope="row">Last Updated</th>
<td>{DTC}{lastUpdate}{/DTC}</td>
</tr>
<tr>
<th scope="row">File Version</th>
<td>{version}</td>
</tr>
<tr>
<th scope="row">Installed Version</th>
<td>{installedVersion}</td>
</tr>
<tr>
<th scope="row">Preferences Installed</th>
<td>{preferences_installed}</td>
</tr>
<tr>
<th scope="row">Permissions Installed</th>
<td>{permissions_installed}</td>
</tr>
<tr>
<th scope="row">Configs Installed</th>
<td>{configs_installed}</td>
</tr>
<tr>
<th scope="row">Models Installed</th>
<td>{models_installed}</td>
</tr>
<tr>
<th scope="row">Resources Installed</th>
<td>{resources_installed}</td>
</tr>
</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>