camp/content/templates/gallery.html
2025-03-28 12:03:30 +00:00

13 lines
573 B
HTML

{% if gallery %}
<h6><strong>{{gallery.title}}</strong></h6>
<ul class="clearing-thumbs gallery" data-clearing>
{% for photo in gallery.public %}
<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 %}
{% if request.user.is_staff %}data-edit="{{ photo.edit_url }}"{% endif %}
></a></li>
{% endfor %}
</ul>
{% endif %}