camp/content/templates/gallery.html

9 lines
446 B
HTML
Raw Normal View History

2017-12-19 12:42:00 +01:00
{% if gallery %}
2025-03-24 10:48:20 +00:00
<h6><strong>{{gallery.title}}</strong></h6>
2025-03-25 22:34:22 +00:00
<ul class="clearing-thumbs gallery" data-clearing>
2017-12-19 12:42:00 +01:00
{% for photo in gallery.public %}
2025-03-25 22:34:22 +00:00
<li><a href="{{ gallery.get_absolute_url }}#{{forloop.counter}}"><img src="{{ photo.get_thumbnail_url }}" class="photo" data-caption="{{ photo.caption_html }}"{% if request.user.is_staff %} data-orig="{{ photo.image.url }}"{% endif %}></a></li>
2017-12-19 12:42:00 +01:00
{% endfor %}
</ul>
{% endif %}