{% extends 'base.html' %} {% load static i18n %} {% block content %}
{% for reservation in object_list%}
    {% for product in reservation.product_set.all%}
  • {{product}} {% if product.borrowed %} {%else%} {% endif %}
  • {% endfor%}
{% endfor %}
{% if is_paginated %} {% endif %} {% endblock%}