Fixing templates

This commit is contained in:
Dennis Eichhorn 2017-06-24 10:51:43 +02:00
parent 848c62cf5b
commit b44fb4b31a
2 changed files with 59 additions and 50 deletions

View File

@ -26,7 +26,9 @@ $footerView->setResults(1);
echo $this->getData('nav')->render(); ?> echo $this->getData('nav')->render(); ?>
<div class="box w-100"> <div class="row">
<div class="col-xs-12">
<div class="box wf-100">
<table class="table red"> <table class="table red">
<caption><?= $this->getText('Departments'); ?></caption> <caption><?= $this->getText('Departments'); ?></caption>
<thead> <thead>
@ -51,4 +53,6 @@ echo $this->getData('nav')->render(); ?>
<tr><td colspan="4" class="empty"><?= $this->getText('Empty', 0, 0); ?> <tr><td colspan="4" class="empty"><?= $this->getText('Empty', 0, 0); ?>
<?php endif; ?> <?php endif; ?>
</table> </table>
</div>
</div>
</div> </div>

View File

@ -28,7 +28,9 @@ $employees = $this->getData('employees');
echo $this->getData('nav')->render(); ?> echo $this->getData('nav')->render(); ?>
<div class="box w-100"> <div class="row">
<div class="col-xs-12">
<div class="box wf-100">
<table class="table red"> <table class="table red">
<caption><?= $this->getText('Staff'); ?></caption> <caption><?= $this->getText('Staff'); ?></caption>
<thead> <thead>
@ -53,4 +55,7 @@ echo $this->getData('nav')->render(); ?>
<tr><td colspan="5" class="empty"><?= $this->getText('Empty', 0, 0); ?> <tr><td colspan="5" class="empty"><?= $this->getText('Empty', 0, 0); ?>
<?php endif; ?> <?php endif; ?>
</table> </table>
</div>
</div>
</div> </div>