{% extends 'core/base_print.html' %} {% load i18n static %} {% block extra_head %} {% endblock %} {% block browser_title %}{% blocktrans %}Print: Check out form{% endblocktrans %}{% endblock %} {% block page_title %}{% blocktrans %}Check out form{% endblocktrans %}{% endblock %} {% block content %}

{% trans "Check out form" %}

{% blocktrans with checked_out_at=process.checked_out_at|date lending_person=process.lending_person.full_name%} The following items have been checked out on {{ checked_out_at }} by {{ lending_person }}: {% endblocktrans %}
{% regroup checked_out_items by inventories_key as checked_out_items_groups %} {% if process.condition %} {{ process.condition.text|linebreaks }} {% endif %} {% if process.check_in_until %}

{% trans "Agreed check in date" %}: {{ process.check_in_until }}

{% endif %}
{% blocktrans %}Signature of the borrowing person{% endblocktrans %}
{% blocktrans with name=process.lending_person.full_name %}Signature of {{ name }}{% endblocktrans %}
{% endblock %}