Init Repo

This commit is contained in:
Gregor Schulte
2021-06-15 11:08:34 +02:00
parent d0b72a118d
commit b303dd00d6
330 changed files with 93268 additions and 0 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>