{% extends 'base.html' %} {% load staticfiles %} {% load pagination_tags %} {% block content %} {% autopaginate all_photo 12 %} {% for photo in all_photo %} {% if photo.org %} {{ photo.org.name }} {% if photo.tag %}{{ photo.tag }} {% endif %} {% else %} {% if photo.tag %}{{ photo.tag }} {% endif %} {% endif %} {% endfor %} {% paginate using "pagination.html" %} {% endblock %}