Add photostream

This commit is contained in:
Nyymix 2025-01-05 22:34:39 +02:00
parent f04beb3aaa
commit 837e4fe693
4 changed files with 26 additions and 2 deletions

View file

@ -0,0 +1,16 @@
{% 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 %}