2019-08-12 23:45:21 +02:00
|
|
|
{% extends "AdminPages/EntityAdminBase.html.twig" %}
|
|
|
|
|
|
|
|
{% block card_title %}
|
|
|
|
<i class="fas fa-file-alt fa-money-bill-alt"></i> {% trans %}currency.caption{% endtrans %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block additional_controls %}
|
|
|
|
{{ form_row(form.iso_code) }}
|
|
|
|
{% if entity.isoCode %}
|
|
|
|
<div class="mt-0 mb-3">
|
|
|
|
<span class="form-text text-muted offset-3 col-9">
|
|
|
|
<b>{% trans %}currency.iso_code.caption{% endtrans %}:</b> {{ entity.isoCode }}
|
|
|
|
</span>
|
|
|
|
<span class="form-text text-muted offset-3 col-9">
|
|
|
|
<b>{% trans %}currency.symbol.caption{% endtrans %}:</b> {{ entity.isoCode | currency_symbol }}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{{ form_row(form.exchange_rate) }}
|
2020-06-07 22:38:10 +02:00
|
|
|
|
|
|
|
{% if form.update_exchange_rate is defined %}
|
|
|
|
{{ form_row(form.update_exchange_rate, {attr: {class: 'btn-link'}}) }}
|
|
|
|
{% endif %}
|
2019-08-12 23:45:21 +02:00
|
|
|
{% if entity.inverseExchangeRate %}
|
|
|
|
<span class="form-text text-muted offset-3 col-9">
|
2020-05-20 20:57:16 +02:00
|
|
|
{{ '1'|format_currency(default_currency) }} = {{ entity.inverseExchangeRate.tofloat | format_currency(entity.isoCode, {fraction_digit: 5}) }}
|
2019-08-12 23:45:21 +02:00
|
|
|
</span>
|
|
|
|
{% endif %}
|
2020-05-11 22:59:25 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block edit_title %}
|
|
|
|
{% trans %}currency.edit{% endtrans %}: {{ entity.name }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block new_title %}
|
|
|
|
{% trans %}currency.new{% endtrans %}
|
2019-08-12 23:45:21 +02:00
|
|
|
{% endblock %}
|