{% extends "layout.html" %}
{% block title %}{{ artist }}'s Gallery{% endblock %}
{% block content %}
{{ artist }}
{% if images.has_prev %}
← Previous
{% endif %}
{% for p in range(1, images.pages + 1) %}
{{ p }}
{% endfor %}
{% if images.has_next %}
Next →
{% endif %}
{% for image in images %}
{{ image.artist }}
{{ image.taken_at or image.imported_at | datetimeformat }}
{% endfor %}
{% if images.has_prev %}
← Previous
{% endif %}
{% for p in range(1, images.pages + 1) %}
{{ p }}
{% endfor %}
{% if images.has_next %}
Next →
{% endif %}