{% extends '__layout__.html' %} {% block title %}View Offer{% 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 %} Return to Currency Exchange

Viewing Offer

{% if offer.creator_id == AuthenticatedUser.id: %}

This offer was created by you

{% endif %}
Offering

{% if offer.offer_currency_type == 0: %}R${%else%}T${%endif%}{{offer.offer_value}}

R:T Ratio

1:{{round(offer.ratio,3)}}

Requesting

{% if offer.offer_currency_type == 1: %}R${%else%}T${%endif%}{{offer.receive_value}}

Created: {{offer.created_at.strftime("%b %d, %Y %I:%M %p")}} UTC

Expires: {{offer.expires_at.strftime("%b %d, %Y %I:%M %p")}} UTC

{% if offer.reciever_id != None: %}

This order has already been filled

{% else: %} {% if offer.creator_id == AuthenticatedUser.id: %}
{%else%}
{%endif%} {%endif%}
{% endblock %}