adsd
This commit is contained in:
@@ -195,17 +195,14 @@ $tabs = [
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Zeit</th>
|
<th>Zeit</th>
|
||||||
<th>Stichtag</th>
|
|
||||||
<th>Fetch-Basis</th>
|
|
||||||
<?php foreach ($tableCurrencies as $currency): ?>
|
<?php foreach ($tableCurrencies as $currency): ?>
|
||||||
<th><?= e((string) $currency) ?></th>
|
<th><?= e((string) $currency) ?></th>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<th>Provider</th>
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php if ($recentFetches === []): ?>
|
<?php if ($recentFetches === []): ?>
|
||||||
<tr><td colspan="<?= 4 + count($tableCurrencies) ?>">Noch keine Abrufe vorhanden.</td></tr>
|
<tr><td colspan="<?= 1 + count($tableCurrencies) ?>">Noch keine Abrufe vorhanden.</td></tr>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<?php foreach ($recentFetches as $fetch): ?>
|
<?php foreach ($recentFetches as $fetch): ?>
|
||||||
<?php
|
<?php
|
||||||
@@ -255,13 +252,10 @@ $tabs = [
|
|||||||
>i</button>
|
>i</button>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td><?= e((string) ($fetch['rate_date'] ?? '')) ?></td>
|
|
||||||
<td><?= e((string) ($fetch['base_currency'] ?? '')) ?></td>
|
|
||||||
<?php foreach ($tableCurrencies as $currency): ?>
|
<?php foreach ($tableCurrencies as $currency): ?>
|
||||||
<?php $value = $tableRates[(string) $currency] ?? null; ?>
|
<?php $value = $tableRates[(string) $currency] ?? null; ?>
|
||||||
<td><?= is_numeric($value) ? e(number_format((float) $value, 8, ',', '')) : '–' ?></td>
|
<td><?= is_numeric($value) ? e(number_format((float) $value, 8, ',', '')) : '–' ?></td>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<td><?= e((string) ($fetch['provider'] ?? '')) ?></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|||||||
Reference in New Issue
Block a user