web_AI-5/django/didgeridoo/currencies/templates/currencies/index.html

89 lines
2.4 KiB
HTML
Raw Normal View History

{% extends "webshop/base.html" %}
{% block section_title %}Currencies in CHF{% endblock %}
{% block content %}
2018-02-28 01:22:27 +01:00
<h5> {{ message }} </h5>
2018-01-11 19:24:52 +01:00
<h3> Frühere Daten: </h3>
<h4> US Dollars: </h4>
{% if currency_USD_list %}
<table>
2017-12-29 17:02:33 +01:00
<tr>
<th scope="col">DATE</th>
<th scope="col">RATE</th>
2018-01-11 19:21:13 +01:00
</tr>
{% for currency in currency_USD_list %}
2018-01-11 19:21:13 +01:00
<tr>
<td scope="col">{{ currency.date.date }}</td>
<td scope="col">{{ currency.exchange_rate_to_chf }}</td>
2018-01-11 19:21:13 +01:00
</tr>
2017-12-29 17:02:33 +01:00
{% endfor %}
</table>
{% else %}
<p class="alert">
currency_USD_list missing.
</p>
{% endif %}
<br>
2018-01-11 19:24:52 +01:00
<h4> EURO: </h4>
{% if currency_EUR_list %}
<table>
<tr>
<th scope="col">DATE</th>
<th scope="col">RATE</th>
2018-01-11 19:21:13 +01:00
</tr>
{% for currency in currency_EUR_list %}
2018-01-11 19:21:13 +01:00
<tr>
<td scope="col">{{ currency.date.date }}</td>
<td scope="col">{{ currency.exchange_rate_to_chf }}</td>
2018-01-11 19:21:13 +01:00
</tr>
{% endfor %}
</table>
{% else %}
<p class="alert">
currency_EUR_list missing.
</p>
{% endif %}
<br>
2018-01-11 19:24:52 +01:00
<h4> Japanese Yenn: </h4>
{% if currency_JPY_list %}
<table>
<tr>
<th scope="col">DATE</th>
<th scope="col">RATE</th>
2018-01-11 19:21:13 +01:00
</tr>
{% for currency in currency_JPY_list %}
2018-01-11 19:21:13 +01:00
<tr>
<td scope="col">{{ currency.date.date }}</td>
<td scope="col">{{ currency.exchange_rate_to_chf }}</td>
2018-01-11 19:21:13 +01:00
</tr>
{% endfor %}
<tr>
</table>
{% else %}
<p class="alert">
currency_JPY_list missing.
</p>
{% endif %}
<br>
2018-01-11 19:24:52 +01:00
<h4> Great Britain Pounds: </h4>
{% if currency_GBP_list %}
<table>
<tr>
<th scope="col">DATE</th>
<th scope="col">RATE</th>
2018-01-11 19:21:13 +01:00
</tr>
{% for currency in currency_GBP_list %}
2018-01-11 19:21:13 +01:00
<tr>
<td scope="col">{{ currency.date.date }}</td>
<td scope="col">{{ currency.exchange_rate_to_chf }}</td>
2018-01-11 19:21:13 +01:00
</tr>
{% endfor %}
<tr>
</table>
{% else %}
<p class="alert">
currency_GBP_list missing.
</p>
{% endif %}
2017-12-19 21:28:05 +01:00
</div>
{% endblock %}