muistox/gallery/templates/gallery/photo_list.html
2025-01-05 22:34:39 +02:00

16 lines
No EOL
353 B
HTML

{% extends "base.html" %}
<!-- Title -->
{% block title %} Gallery : Photostream {% endblock %}
<!-- Breadcrumb -->
{% block breadcrumb %}
<li>Photostream</li>
{% endblock %}
<!-- Content -->
{% block content %}
{% for photo in object_list %}
<a href="{{ photo.get_absolute_url }}">{{ photo.slug }}</a>
{% endfor %}
{% endblock %}