This commit is contained in:
2023-03-28 10:34:44 +02:00
parent f803effbbd
commit f7e0f37528
428 changed files with 9982 additions and 100 deletions

View File

@@ -0,0 +1,28 @@
<?php if (!defined('PICONTROL')) exit(); ?>
<div>
<div class="box">
<div class="inner-header">
<span><?php _e('Installierte Pakete'); ?></span>
<?php showGoBackIcon('?s=detailed_overview'); ?>
</div>
<div class="inner">
<strong><?php _e('Anzahl an installierten Paketen: %s', $data['installedPackagesCount']); ?></strong>
</div>
<div class="inner-table overflow-auto">
<table class="table table-borderless">
<tr>
<th><?php _e('Paketname'); ?></th>
<th><?php _e('Version'); ?></th>
<th><?php _e('Beschreibung'); ?></th>
</tr>
<?php foreach ($data['installedPackages'] as $package) { ?>
<tr>
<td><?php echo $package[1]; ?></td>
<td><?php echo $package[2]; ?></td>
<td><?php echo $package[4]; ?></td>
</tr>
<?php } ?>
</table>
</div>
</div>
</div>