mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-03-02 13:10:23 -05:00
18 lines
440 B
PHTML
18 lines
440 B
PHTML
<table class="table table-bordered" >
|
|
<thead>
|
|
<tr style="text-align:left">
|
|
<th width="70%">Module</th>
|
|
<th width="15%">Type</th>
|
|
<th width="15%">Active</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($this->modules as $module): ?>
|
|
<tr>
|
|
<td><?= $module["name"]; ?></td>
|
|
<td><?= $module["type"]; ?></td>
|
|
<td><?= $module["active"]; ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|