camp/content/templates/photologue/photo_detail.html

50 lines
2.0 KiB
HTML
Raw Normal View History

2017-07-03 08:14:07 +00:00
{% extends "photologue:photologue/photo_detail.html" %}
{% load photologue_tags i18n %}
{% block title %}{{ object.title }}{% endblock %}
{% block content %}
{% for gallery in object.public_galleries %}
<div class="row">
<div class="medium-9 columns">
2017-12-20 19:12:14 +00:00
{% if gallery.content.exists %}
<h6 class="page-header"><a href="{{ gallery.content.all.0.get_absolute_url }}">Back to {{ gallery.content.all.0.title }}</a></h6>
2017-12-20 18:44:11 +00:00
{% endif %}
2017-12-22 21:20:19 +00:00
<h5>{{ gallery.title }}</h5>
2017-07-03 08:14:07 +00:00
<ul class="slider1">
{% for photo.pk in gallery.public %}
<li>
<img src="{{ photo.get_display_url }}" alt="{{ photo.title }}">
<br /> <p>{{ photo.caption|safe }} <a href="{{ photo.image.url }}"> Link to original file </a> </p>
</li>
{% for photo in gallery.public %}
<li>
<img src="{{ photo.get_display_url }}" alt="{{ photo.title }}">
<br /> <p>{{ photo.caption|safe }} <a href="{{ photo.image.url }}" target="_blank" > Link to original file </a> </p>
</li>
{% endfor %}
{% endfor %}
</ul>
2017-12-20 18:44:11 +00:00
}
2017-07-03 08:14:07 +00:00
</div>
<div class="medium-3 columns">
{% if object.public_galleries %}
2017-12-22 21:20:19 +00:00
<p>{% trans "Other photos" %}:</p>
2017-07-03 08:14:07 +00:00
<table>
{% for photo in gallery.public %}
<tr>
<td><a href="{{ photo.get_absolute_url }}">
<img src="{{ photo.get_thumbnail_url }}" class="thumbnail" alt="{{ photo.title }}"></a></td>
<td>
<p>{{ photo.caption|safe }} {{ photo.count }} </p>
</td>
</tr>
{% endfor %}
</table>
{% endif %}
{% endfor %}
</div>
</div>
{% endblock %}