{% 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%}
{% if reservation.observation_set.count %}

{% trans 'Observations' %}

{% for observation in reservation.observation_set.all %} {{observation.text}}
{% endfor%}
{% endif %}
{% empty %}

{% trans 'No reservations saved yet' %}

{% endfor %}
{% if is_paginated %} {% endif %} {% endblock%}