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.
28 lines
697 B
28 lines
697 B
{% extends "photologue/root.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "All Photos" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row page-header">
|
|
<div class="col-lg-12">
|
|
<h1>{% trans "All Photos" %}</h1>
|
|
</div>
|
|
</div>
|
|
|
|
{% if object_list %}
|
|
<div class="row">
|
|
{% for photo in object_list %}
|
|
<a href="{{ photo.get_absolute_url }}">
|
|
<img src="{{ photo.get_thumbnail_url }}" class="thumbnail" alt="{{ photo.title }}">
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<div class="row">{% trans "No photos were found" %}.</div>
|
|
{% endif %}
|
|
|
|
{% include "photologue/includes/paginator.html" %}
|
|
|
|
{% endblock %}
|
|
|