{% extends "backend/base.html" %} {% block content %}
Currencies
Create, edit and delete currencies
Active Currencies
{% for currency in object_list %} {% endfor %}
Name Code Symbol Exchange Rate to {{ base_currency.code }} Options
{% if currency == base_currency %}{{ currency.name }}{% else %}{{ currency.name }}{% endif %} {{ currency.code }} {{ currency.symbol }} {{ currency.rate }}
{% endblock %}