added pagination to Voicenumberblock

This commit is contained in:
Frank Schubert
2021-12-21 22:28:22 +01:00
parent b79c5cbc3e
commit 8132348b49
4 changed files with 18 additions and 9 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->first?>" />
<input type="text" class="form-control" name="first" id="first" value="<?=$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->last?>" />
<input type="text" class="form-control" name="last" id="last" value="<?=$block->getLast()?>" />
<small>4080099</small>
</div>
</div>