Added voicenumber list to Voicenumberblock

This commit is contained in:
Frank Schubert
2022-01-11 23:01:28 +01:00
parent a9b51281f9
commit f2a33a02ef
4 changed files with 75 additions and 54 deletions
+2 -2
View File
@@ -55,7 +55,7 @@
<div class="form-group row">
<label class="col-lg-2 col-form-label" for="first">Erste Nummer *</label>
<div class="col-lg-10">
<input type="text" class="form-control" name="first" id="first" value="<?=$block->getFirst()?>" />
<input type="text" class="form-control" name="first" id="first" value="<?=($block->id) ? $block->getFirst() : ""?>" />
<small>4080010</small>
</div>
</div>
@@ -63,7 +63,7 @@
<div class="form-group row">
<label class="col-lg-2 col-form-label" for="last">Letzte Nummer *</label>
<div class="col-lg-10">
<input type="text" class="form-control" name="last" id="last" value="<?=$block->getLast()?>" />
<input type="text" class="form-control" name="last" id="last" value="<?=($block->id) ? $block->getLast() : ""?>" />
<small>4080099</small>
</div>
</div>