{% extends "layout.html" %} {% block title %}Exchange Rates{% endblock %} {% block content %}
Date | Rate | Inv.Rate | Currency | Base | Chart | {% for rate in rates %}
---|---|---|---|---|---|
{% 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 %} |