{% extends "master.html" %} {% load ui %} {% load humanize %} {% block sidebar %} {{ block.super }}
Record
Go to record
Thumbnail
{% record record "True" "thumb" "True" %}
{% endblock %} {% block content %}

{{ presentations|length }} Presentation{{ presentations|pluralize }} using "{{ record.title }}"

{% if presentations %} {% for presentation in presentations %} {% owned_tags_for_object presentation for request.user as ptags %} {% owned_tags_for_object presentation for presentation.owner as otags %} {% endfor %}
Title Hidden Created Modified Presenter Tags Items
{{ presentation.title }} {{ presentation.hidden|yesno:"hidden,-" }} {{ presentation.created|naturalday }} {{ presentation.modified|naturalday }} {% if presentation.owner.last_name %}{{ presentation.owner.last_name }}, {{ presentation.owner.first_name }}{% else %}{{ presentation.owner.username }}{% endif %} {% for ptag in ptags %} {% tag ptag presentation "True" %} {% endfor %} {% for otag in otags %} {% tag otag presentation 0 'secondary' %} {% endfor %} {% if not ptags and not otags %} {% endif %} {{ presentation.visible_item_count }} {% with presentation.hidden_item_count as h %}{% if h %} (+{{h}}){% endif %}{% endwith %}
{% else %} No presentations are using this record. {% endif %} {% endblock %}