{% extends "layout.html" %} {% block content %}


Event Details




                                {{ event.event_info.title }}
Image
Image

{{ event.event_info.title }}


Location: {{ event.event_info.location }}

Start: {{ event.display_start_time }}

End: {{ event.display_end_time }}

Remaining Tickets: {{ event.remaining }}

Total Tickets: {{ event.event_info.total }}

{{ event.event_info.description }}


{{ form.hidden_tag() }} {% if event.event_info.remaining == 0 %}

{% else %} Transaction Details

{% endif %}


Ticket Selling Transactions


{% if tx_lists %} {% for tx_list in tx_lists %}
{% for tx in tx_list %}

                                {{ event.event_info.title }}

hash: {{ tx.hash }}

Type: {{ tx.type }}

Sender: {{ tx.sender }}

Receiver: {{ tx.receiver }}

Time: {{ tx.time }}

{% endfor %}
{% endfor %} {% else %} {% endif %}
{% endblock %}