{% load i18n %}
{% if item.is_available %}
{% trans "Available" %}
{% if item.location and not short %}
({{ item.location }})
{% endif %}
{% else %}
{% if not short %}{% trans "Checked out to" %}{% else %}{% trans "Checked out" %}{% endif %}
{% if not short %}
{{ current_checked_out_item.process.borrowing_person.full_name }},
#{{ current_checked_out_item.process.id }}
{% endif %}
{% endif %}