Added Access VLANs to Pop
This commit is contained in:
@@ -87,7 +87,8 @@
|
||||
</div>
|
||||
<div id="net-detail-<?=$network->id?>-pops" class="tab-pane">
|
||||
<h4>POPs in <strong><?=$network->name?></strong></h4>
|
||||
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<?php if(is_array($network->pops) && count($network->pops)): ?>
|
||||
<table class="table" >
|
||||
<tr>
|
||||
@@ -100,7 +101,7 @@
|
||||
<tr>
|
||||
<td><?=$pop->name?></td>
|
||||
<td><?=$pop->gps_lat?>, <?=$pop->gps_long?></td>
|
||||
<td><?=$pop->location?></td>
|
||||
<td><?=nl2br($pop->location)?></td>
|
||||
<td class="controls" style="text-align: left; letter-spacing: 4px; font-size: 1.1em;">
|
||||
<a href="<?=self::getUrl("Pop", "edit", ["id" => $pop->id])?>"><i class="far fa-edit" title="Bearbeiten"></i></a>
|
||||
<a href="<?=self::getUrl("Pop", "delete", ["id" => $pop->id])?>" class="text-danger" title="Löschen"><i class="fas fa-trash"></i></a>
|
||||
@@ -111,6 +112,8 @@
|
||||
<?php else: ?>
|
||||
<p><i>Keine POPs vorhanden</i></p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<a class="btn btn-primary" href="<?=self::getUrl("Pop", "add", ['network_id' => $network->id])?>"><i class="fas fa-plus"></i> Neuen POP anlegen</a>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user