{% extends 'base.html' %} {% block title %}Images | Admin | {{ settings.site_name }}{% endblock %} {% block content %}

Image Gallery

{{ images|length }} image{{ 's' if images|length != 1 else '' }}
{% if images %}
{% for image in images %}
{{ image.title }}
{{ image.category or 'other' }} {{ image.created_at.strftime('%b %d') }}
{% endfor %}
{% if pagination and pagination.pages > 1 %} {% endif %} {% else %}

No images uploaded yet

Upload First Image
{% endif %}
{% endblock %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %}