Template fix/improvement

This commit is contained in:
eeintech 2021-05-20 13:51:54 -04:00
parent 747b0554e1
commit 27799b43b2

View File

@ -16,7 +16,9 @@
{% include "InvenTree/settings/header.html" %}
<tbody>
{% include "InvenTree/settings/setting.html" with key="INVENTREE_DEFAULT_CURRENCY" icon="fa-dollar-sign" %}
{% if 'fixer' in exchange_backend %}
{% include "InvenTree/settings/setting.html" with key="INVENTREE_FIXER_API_KEY" icon="fa-key" %}
{% endif %}
</tbody>
</table>
@ -31,7 +33,7 @@
{% csrf_token %}
{% load crispy_forms_tags %}
{% crispy form %}
{% if exchange_backend == 'fixer.io' %}
{% if 'fixer' in exchange_backend %}
<button type="submit" class='btn btn-primary'>{% trans "Refresh Exchange Rates" %}</button>
{% else %}
<button type="submit" class='btn btn-primary'>{% trans "Update Exchange Rates" %}</button>