Fix wrong table captions, and rows for better readable

This commit is contained in:
Dario Rekowski on RockPI 2020-05-14 14:35:40 +00:00 committed by Dario via Pythagoras
parent d303510ef6
commit a45a1a8b46

View File

@ -70,10 +70,10 @@ $publisherGdtSum = 0;
<table class="table table-hover table-sm"> <table class="table table-hover table-sm">
<thead> <thead>
<tr class="solid-header"> <tr class="solid-header">
<th class="pl-4"><?= __('Euro') ?></th> <th class="pl-4"><?= __('Datum') ?></th>
<th><?= __('Euro') ?></th>
<th><?= __('Factor')?></th> <th><?= __('Factor')?></th>
<th><?= __('GDT') ?></th> <th><?= __('GDT') ?></th>
<th><?= __('Datum') ?></th>
<th><?= __('Kommentar') ?></th> <th><?= __('Kommentar') ?></th>
<th><?= __('E-Mail') ?></th> <th><?= __('E-Mail') ?></th>
</tr> </tr>
@ -84,6 +84,7 @@ $publisherGdtSum = 0;
$ownGdtSum += $entry['gdt']; $ownGdtSum += $entry['gdt'];
?> ?>
<tr> <tr>
<td><?= new FrozenTime($entry['date']) ?></td>
<td> <td>
<?= $this->element('printEuro', ['number' => $entry['amount']]); ?> <?= $this->element('printEuro', ['number' => $entry['amount']]); ?>
<?php <?php
@ -100,7 +101,6 @@ $publisherGdtSum = 0;
<?php endif; ?> <?php endif; ?>
</td> </td>
<td><?= $this->element('printGDT', ['number' => $entry['gdt']]) ?></td> <td><?= $this->element('printGDT', ['number' => $entry['gdt']]) ?></td>
<td><?= new FrozenTime($entry['date']) ?></td>
<td><?= h($entry['comment']) ?></td> <td><?= h($entry['comment']) ?></td>
<td><?= $entry['email'] ?></td> <td><?= $entry['email'] ?></td>
</tr> </tr>
@ -130,10 +130,10 @@ $publisherGdtSum = 0;
<thead> <thead>
<tr class="solid-header"> <tr class="solid-header">
<!--<th class="pl-4"><?= __('Einzahlender') ?></th>--> <!--<th class="pl-4"><?= __('Einzahlender') ?></th>-->
<th class="pl-4"><?= __('Euro') ?></th> <th class="pl-4"><th><?= __('Datum') ?></th>
<th><?= __('Euro') ?></th>
<th><?= __('Factor') ?></th> <th><?= __('Factor') ?></th>
<th><?= __('GDT')?></th> <th><?= __('GDT')?></th>
<th><?= __('Datum') ?></th>
<th><?= __('E-Mail') ?></th> <th><?= __('E-Mail') ?></th>
</tr> </tr>
</thead> </thead>