view photologue/templates/photologue/photo_list.html @ 124:734c232604dc

Bootstrap; tweak upcoming gigs list for Chrome on home page.
author Brian Neal <bgneal@gmail.com>
date Sun, 27 Oct 2013 12:14:03 -0500
parents e2868ad47a1e
children
line wrap: on
line source
{% extends "photologue/root.html" %}

{% block title %}All Photos{% endblock %}

{% block content %}

<h1>All Photos</h1>

{% if object_list %}
    {% for photo in object_list %}
    <div class="gallery-photo">
        <a href="{{ photo.get_absolute_url }}"><img src="{{ photo.get_thumbnail_url }}" alt="{{ photo.title }}"/></a>
    </div>
    {% endfor %}
{% else %}
<p>No photos were found.</p>
{% endif %}

{% if is_paginated %}
<p>{{ hits }} photos total.</p>
<div id="page_controls">
    <p>{% if has_previous %}<a href="{% url pl-photo-list previous %}">Previous</a> | {% endif %} page {{ page }} of {{ pages }} {% if has_next %}| <a href="{% url pl-photo-list next %}">Next</a>{% endif %}</p>
</div>
{% endif %}

{% endblock %}