Devices:
• Übersicht Pop/Adressen/Koordinaten Verlinkungen Pop: • Fontsize in Übersicht auf 13px geändert für bessere Übersicht • Neue Features: o Poprackverwaltung v1 CRUD o Poprackmodulverwaltung V1 CRUD
This commit is contained in:
@@ -1,4 +1,17 @@
|
||||
<?php include(realpath(dirname(__FILE__) . "/../../$mfLayoutPackage") . "/header.php"); ?>
|
||||
<?php include(realpath(dirname(__FILE__) . "/../../$mfLayoutPackage") . "/header.php");
|
||||
|
||||
if (isset($_GET['returnto']) && $_GET['returnto'] == "pop-detail") {
|
||||
$cancelUrl = self::getUrl("Pop", "Detail", ["id" => $pop->id]);
|
||||
$cancelText="Pop Detail";
|
||||
} else if (isset($_GET['returnto'])) {
|
||||
$cancelUrl = self::getUrl("Pop");
|
||||
$cancelText="Pops";
|
||||
} else
|
||||
{
|
||||
$cancelUrl = self::getUrl("Network");
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<!-- start page title -->
|
||||
<div class="row">
|
||||
@@ -11,14 +24,14 @@
|
||||
<?php if (empty($_GET["returnto"])) {
|
||||
?>
|
||||
<li class="breadcrumb-item"><a href="<?= self::getUrl("Network") ?>">Netzgebiete</a></li>
|
||||
<li class="breadcrumb-item">POP</li>
|
||||
<li class="breadcrumb-item">Pop</li>
|
||||
<?php
|
||||
} else {
|
||||
?>
|
||||
|
||||
<li class="breadcrumb-item"><a
|
||||
href="<?= self::getUrl(ucfirst($_GET["returnto"])) ?>"><?= strtoupper($_GET["returnto"]) ?>
|
||||
></a></li>
|
||||
href="<?= $cancelUrl ?>"><?= ucfirst($cancelText) ?>
|
||||
</a></li>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
@@ -140,6 +153,9 @@
|
||||
<label class="col-lg-2"></label>
|
||||
<div class="col-lg-10">
|
||||
<button type="submit" class="btn btn-primary">Speichern</button>
|
||||
<a href="<?= $cancelUrl ?>">
|
||||
<button type="button" class="btn btn-secondary">Abbrechen</button>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user