{% extends '__layout__.html' %} {% block title %}Currency Exchange{% endblock %} {% block head %} {% endblock %} {% block content %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %} {% if category == 'error': %}
{{ message }}
{% endif %} {% if category == 'success': %}
{{ message }}
{% endif %} {% endfor %}
{% endif %} {% endwith %}

Currency Exchange

{% for OfferObj in offers: %} {% endfor %}
Date Expires Offering Requesting R:T Ratio Action
{{ OfferObj.created_at.strftime("%d/%m/%Y") }} {{ OfferObj.expires_at.strftime("%d/%m/%Y") }} {% if OfferObj.offer_currency_type == 0 %} R$ {{OfferObj.offer_value}} {% else %} T$ {{OfferObj.offer_value}} {% endif %} {% if OfferObj.offer_currency_type == 1 %} R$ {{OfferObj.receive_value}} {% else %} T$ {{OfferObj.receive_value}} {% endif %} 1:{{round(OfferObj.ratio, 3)}} View
{% if len(offers) == 0: %}

No offers found

{%endif%}
Previous

Page {{PageNumber}}

Next
{% endblock %}