{% extends "panel.html" %} {% load i18n %} {% block label %}pricing{% endblock %} {% block heading %} {% trans "Pricing Settings" %} {% endblock %} {% block panel_content %}
{% include "InvenTree/settings/setting.html" with key="PART_INTERNAL_PRICE" %} {% include "InvenTree/settings/setting.html" with key="PART_BOM_USE_INTERNAL_PRICE" %} {% include "InvenTree/settings/setting.html" with key="PRICING_DECIMAL_PLACES" %} {% include "InvenTree/settings/setting.html" with key="PRICING_UPDATE_DAYS" icon='fa-calendar-alt' %} {% include "InvenTree/settings/setting.html" with key="PRICING_USE_SUPPLIER_PRICING" icon='fa-check-circle' %} {% include "InvenTree/settings/setting.html" with key="PRICING_PURCHASE_HISTORY_OVERRIDES_SUPPLIER" icon='fa-shopping-cart' %} {% include "InvenTree/settings/setting.html" with key="PRICING_USE_VARIANT_PRICING" icon='fa-check-circle' %} {% include "InvenTree/settings/setting.html" with key="PRICING_ACTIVE_VARIANTS" %}

{% trans "Currency Settings" %}

{% include "spacer.html" %}
{% csrf_token %}
{% if rates_updated %}
{% trans "Last Update" %} - {{ rates_updated }}
{% else %}
{% trans "Last Update" %} - {% trans "Never" %}
{% endif %} {% 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" %} {% trans "Currency" %} {% trans "Rate" %}
{{ rate.currency }} {{ rate.value }}
{% endblock panel_content %}