You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
{% extends "photologue/root.html" %}
|
|
{% load photologue_tags i18n %}
|
|
|
|
{% block title %}{{ object.title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h1 class="page-header">{{ object.title }}</h1>
|
|
|
|
{% if object.caption %}<p>{{ object.caption|safe }}</p>{% endif %}
|
|
<p class="muted"><small>{% trans "Published" %} {{ object.date_added }}</small></p>
|
|
|
|
<a href="{{ object.image.url }}">
|
|
<img src="{{ object.get_display_url }}" class="thumbnail" alt="{{ object.title }}">
|
|
</a>
|
|
|
|
{% if object.public_galleries %}
|
|
<hr>
|
|
<p>{% trans "This photo is found in the following galleries" %}:</p>
|
|
<table>
|
|
{% for gallery in object.public_galleries %}
|
|
<tr>
|
|
<td>{% previous_in_gallery object gallery %}</td>
|
|
<td class="text-center"><a href="{{ gallery.get_absolute_url }}">{{ gallery.title }}</a></td>
|
|
<td>{% next_in_gallery object gallery %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|