{% extends "Global/layout.html.twig" %} {% set pagetitle = 'Manage currencies' | trans %} {% block title %}{{pagetitle}}{% endblock %} {% block content %} {% set navigation = [{ "dashboard_index": ('Dashboard' | trans), "dashboard_administrator_settings_payment": ('Payment settings' | trans), "current":(pagetitle) }] %} {% include "Global/navigation.html.twig" with navigation %}
{{ "%resultsCount% result(s) found"|trans({'%resultsCount%': currencies.getTotalItemCount}) }}
{% if currencies.getTotalItemCount > 0 %}
{% for currency in currencies %} {% endfor %}
{{'Ccy' | trans}} {{'Symbol' | trans}}
{{ currency.ccy }} {% if currency.ccy == services.getSetting('currency_ccy') %} {{ "Currenctly active" }} {% endif %} {{ currency.symbol }}
{{ 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 %}
{% endblock %}