{% extends "base.html" %} {% load prefix %} {% load datehumanize %} {% load roomurl %} {% load tagging_tags %} {% block widgets %} $("#recordings").accordion({ header: 'h3', active: false, event: "click", collapsible: true, navigation: true, animated: true, autoHeight: false }); {% endblock %} {% block meta %} {% endblock %} {% block content %}

Recordings in '{{room.name}}'

{% if recordings %}
{% for r in recordings %}

{{r.name}}

{{r.url}}

{% if r.description %}{{r.description|safe}}{% else %}No description available...{% endif %}

  • » Created {{r.date_created|datehumanize}}.
  • » Modified {{r.date_modified|datehumanize}}.
  • » Hosted on {{room.acc.name}}

{% endfor %}
{% else %}

No recordings right now...

{% endif %}
{% endblock %} {% block validators %} [Valid Atom 1.0] [Valid RSS] {% endblock %}