{% extends "webshop/base.html" %} {% block section_title %}Currencies in CHF{% endblock %} {% block content %}
{{ message }}

Frühere Daten:

US Dollars:

{% if currency_USD_list %} {% for currency in currency_USD_list %} {% endfor %}
DATE RATE
{{ currency.date.date }} {{ currency.exchange_rate_to_chf }}
{% else %}

currency_USD_list missing.

{% endif %}

EURO:

{% if currency_EUR_list %} {% for currency in currency_EUR_list %} {% endfor %}
DATE RATE
{{ currency.date.date }} {{ currency.exchange_rate_to_chf }}
{% else %}

currency_EUR_list missing.

{% endif %}

Japanese Yenn:

{% if currency_JPY_list %} {% for currency in currency_JPY_list %} {% endfor %}
DATE RATE
{{ currency.date.date }} {{ currency.exchange_rate_to_chf }}
{% else %}

currency_JPY_list missing.

{% endif %}

Great Britain Pounds:

{% if currency_GBP_list %} {% for currency in currency_GBP_list %} {% endfor %}
DATE RATE
{{ currency.date.date }} {{ currency.exchange_rate_to_chf }}
{% else %}

currency_GBP_list missing.

{% endif %} {% endblock %}