{% extends "base.html" %} {% block title %}Item List{% endblock %} {% block content %}

« Back to main page

Items

{% if object_list %} {% for item in object_list %} {% endfor %}
Name Sample Thumb Description
{{ item.name }} {% if item.photo_set.count %} {% else %} (No photos currently uploaded) {% endif %} {{ item.description }}
{% else %}

There are currently no items to display.

{% endif %} {% endblock %}