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

Currency List:

{% if ordered_currency_list %} {% for currency in ordered_currency_list %} {% endfor %}
DATE NAME RATE
{{ currency.date }} {{ currency.name }} {{ currency.exchange_rate_to_chf }}

{{ message }}

{% else %}

currency_list missing.

{% endif %} {% endblock %}