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