58 lines
4.3 KiB
PHP
58 lines
4.3 KiB
PHP
|
@extends(templates/layout_normal)
|
||
|
|
||
|
@section(main)
|
||
|
<h2><a href="<?= Container::$routeCollection->getRoute('community')->generateLink(['communityId' => $community->getId()]) ?>"><?= $community->getName() ?></a> - Exchange rates for <?= $currency->getCode() ?></h2>
|
||
|
<div class="box">
|
||
|
<table class="fullWidth">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<?php if ($editPermission): ?>
|
||
|
<th style="width: 25%; text-align: left;">Exchange rate</th>
|
||
|
<th style="width: 50%; text-align: left;">Valid from</th>
|
||
|
<th style="width: 25%;"></th>
|
||
|
<?php else: ?>
|
||
|
<th style="width: 35%; text-align: left;">Exchange rate</th>
|
||
|
<th style="width: 65%; text-align: left;">Valid from</th>
|
||
|
<?php endif; ?>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<?php foreach ($currencyExchangeRates as $currencyExchangeRate): ?>
|
||
|
<tr>
|
||
|
<?php if ($editPermission): ?>
|
||
|
<td>
|
||
|
<form id="editExchangeRate_<?= $currencyExchangeRate->getId() ?>" action="<?= Container::$routeCollection->getRoute('community-currency-exchange-rates-edit')->generateLink(['communityId' => $community->getId(), 'code' => $currency->getCode(), 'currency_exchange_rate_id' => $currencyExchangeRate->getId()]) ?>" method="post" data-reload-on-success="true" data-observe-inputs="exchange_rate,valid_from"></form>
|
||
|
<form id="deleteCurrency_<?= $currencyExchangeRate->getId() ?>" action="<?= Container::$routeCollection->getRoute('community-currency-exchange-rates-delete')->generateLink(['communityId' => $community->getId(), 'code' => $currency->getCode(), 'currency_exchange_rate_id' => $currencyExchangeRate->getId()]) ?>" method="post" data-reload-on-success="true"></form>
|
||
|
<input type="number" form="editExchangeRate_<?= $currencyExchangeRate->getId() ?>" class="text fullWidth" name="exchange_rate" value="<?= $currencyExchangeRate->getExchangeRate() ?>" min="0" step="0.000000001" required>
|
||
|
</td>
|
||
|
<td>
|
||
|
<input type="datetime-local" form="editExchangeRate_<?= $currencyExchangeRate->getId() ?>" class="text fullWidth" name="valid_from" value="<?= $currencyExchangeRate->getValidFromDate()->format('Y-m-d\TH:i') ?>" required>
|
||
|
</td>
|
||
|
<td style="text-align: right;">
|
||
|
<button type="submit" form="editExchangeRate_<?= $currencyExchangeRate->getId() ?>" name="submit" class="small marginRight" disabled>Save</button><!--
|
||
|
--><button type="submit" form="deleteCurrency_<?= $currencyExchangeRate->getId() ?>" class="small red">Delete</button>
|
||
|
</td>
|
||
|
<?php else: ?>
|
||
|
<td><?= $currencyExchangeRate->getExchangeRate() ?></td>
|
||
|
<td><?= $currencyExchangeRate->getValidFromDate()->format('Y-m-d H:i') ?></td>
|
||
|
<?php endif; ?>
|
||
|
</tr>
|
||
|
<?php endforeach; ?>
|
||
|
<?php if ($editPermission): ?>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<form id="newExchangeRate" action="<?= Container::$routeCollection->getRoute('community-currency-exchange-rates-new')->generateLink(['communityId' => $community->getId(), 'code' => $currency->getCode()]) ?>" method="post" data-reload-on-success="true" data-observe-inputs="exchange_rate,valid_from"></form>
|
||
|
<input type="number" form="newExchangeRate" class="text fullWidth" name="exchange_rate" placeholder="Exchange rate" min="0" step="0.000000001" required>
|
||
|
</td>
|
||
|
<td>
|
||
|
<input type="datetime-local" form="newExchangeRate" class="text fullWidth" name="valid_from" placeholder="Valid from" required>
|
||
|
</td>
|
||
|
<td style="text-align: right;">
|
||
|
<button type="submit" form="newExchangeRate" name="submit" class="small" disabled>Add</button>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<?php endif; ?>
|
||
|
</table>
|
||
|
<p class="formError justify marginTop"></p>
|
||
|
</div>
|
||
|
@endsection
|