{% extends 'includes/base.html' %} {% block content %}

artworks

{% if feed['artwork'] %} {%- for _artwork in feed['artwork'] | batch(4) %} {%- for artwork in _artwork %} {%- endfor %} {%- endfor %}

...view all

{% else %}

There's nothing here yet...

{% endif %}

artists

{% if feed['users'] %} {% for user in feed['users'] %}

{{ user.handle }}

{% endfor %}

...view all

{% else %}

There's nothing here yet...

{% endif %}

tips

{% if feed['tips'] %} {% for tx in feed['tips'] %} {% endfor %}
TXID XMR Artwork Artist Date
{{ tx.tx_id | shorten }} {{ tx.atomic_xmr | atomic }} {{ tx.artwork.id }} {{ tx.artwork.user.handle }} {{ tx.tx_date | humanize }}

...view all

{% else %}

There's nothing here yet...

{% endif %}
{% endblock %}