{% extends 'includes/base.html' %} {% block content %} {% set img = url_for('main.uploaded_file', filename=artwork.image) %}

{{ artwork.title }}

{% if artwork.nsfw %}

NSFW

{% endif %}
posted by {{ artwork.user.handle }} - {{ artwork.upload_date | humanize }}

{{ artwork.description }}

{% if current_user.is_authenticated and current_user.is_admin %} {% endif %} {% if not artwork.approved %} {% if artwork.hidden %} {% else %} {% endif %} {% endif %}

Send a Tip

{{ artwork.user.wallet_address }}

{{ form.csrf_token }}
{{ form.tx_id.label }} {{ form.tx_id }}
{{ form.tx_key.label }} {{ form.tx_key }}
{% if txes_pending %}
{{ txes_pending }} tips pending
{% endif %} {% if txes %} {% for tx in txes %} {% endfor %}
TXID XMR Date
{{ tx.tx_id | shorten }} {{ tx.atomic_xmr | atomic }} {{ tx.tx_date | humanize }}

Total Received: {{ total | atomic }} XMR

{% else %}

No tips confirmed yet...

{% endif %}
{% endblock %}