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

{{ event.title|capitalize }}

Created by {{ host.moniker }} ( Account: {{ host.address }} )


{{ event.description }}


{{ event.details|markdown }}


{{ event.location }}

{{ event.start_time }}

{{ event.end_time }}

{{ googlemap("simple-map", 47.6101, -122.2015, markers=[(47.6101, -122.2015)]) }}

How Many People Have Tried?


{% if num_txs > 0 %}

Not all attempts are created equal. Click to see if that purchase succeeded.

{% for tx_list in tx_lists %} {% for tx in tx_list %} {% endfor %} {% endfor %}
Hash Time
{{ tx.hash }} {{ to_display_time(tx.time) }}
{{ shorten_hash(tx.hash) }} {{ to_short_time(tx.time) }}
{% else %}

No one has got the ticket yet. Be the first one on the list !

{% endif %}
{% endblock %}