{% extends "base.html" %} {% block title %}my images - irc.pics{% endblock %} {% block nav_auth %} log out {% endblock %} {% block content %}

my images

{% if images.is_empty() %}

no images yet. upload one.

{% else %}
{% for img in images %}
{{ img.filename }}
{{ img.filename }} {{ img.size }}
{% endfor %}
{% endif %}
{% endblock %}