summaryrefslogtreecommitdiff
path: root/examples/cloudfiles_project/templates/photos/photo_list.html
blob: 81a49a5b1fea08be2e3b725f37d0f946e0b5b4c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}

{% block content %}
<h1>Photos in database</h1>
{% if object_list %}
<ul>{% spaceless %}
    {% for object in object_list %}
    <li>{{ object.image.url }}</li>
    {% endfor %}
{% endspaceless %}</ul>
{% else %}
<p>No photos exist.</p>
{% endif %}
{% endblock %}