{{ "%resultsCount% result(s) found"|trans({'%resultsCount%': currencies.getTotalItemCount}) }}
{% if currencies.getTotalItemCount > 0 %}
{{'Ccy' | trans}} |
{{'Symbol' | trans}} |
|
{% for currency in currencies %}
{{ currency.ccy }}
{% if currency.ccy == services.getSetting('currency_ccy') %}
{{ "Currenctly active" }}
{% endif %}
|
{{ currency.symbol }}
|
|
{% endfor %}
{{ knp_pagination_render(currencies, null, {}, {'align': 'center'}) }}
{% else %}
{% include "Global/message.html.twig" with { type: "info", message: ('No currencies found'|trans), icon: "fas fa-exclamation-circle" } %}
{% endif %}