{% extends "panel.html" %} {% load i18n %} {% load inventree_extras %} {% block label %}currencies{% endblock %} {% block heading %} {% trans "Currency Settings" %} {% endblock %} {% block content %} {% include "InvenTree/settings/setting.html" with key="INVENTREE_DEFAULT_CURRENCY" icon="fa-globe" %} {% for rate in rates %} {% endfor %}
{% trans "Base Currency" %} {{ base_currency }}
{% trans "Exchange Rates" %}
{{ rate.value }} {{ rate.currency }}
{% trans "Last Update" %} {% if rates_updated %} {{ rates_updated }} {% else %} {% trans "Never" %} {% endif %}
{% csrf_token %}
{% endblock %}