{% extends "layout.html" %} {% block title %}Exchange Rates{% endblock %} {% block content %}

Exchange Rates

Latest available rates

{% for rate in rates %} {% endfor %}
Date Rate Inv.Rate Currency Base Chart
{% if rate.date %}{{ "{:%Y-%m-%d}".format(rate.date) }}{% endif %} {{ rate.value }} {% if rate.value %}{{ "{:,.4f}".format(1 / rate.value) }}{% endif %} {{ rate.currency }} {{ rate.base_currency }} {% if rate.base_currency %} Chart {% endif %}
{% endblock %} {% block scripts %} {% endblock %}