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

Your meeting rooms

{% if rooms %}
{% for r in rooms %}

{{r.name}}

  • Created by {{r.creator}} {{r.timecreated|datehumanize}}.
  • {% if r.lastvisited %}
  • Last visited {{r.lastvisited|datehumanize}}{% if r.user_count %}when there was {{r.user_count}} user{{r.user_count|pluralize}} in the room{%endif%}.
  • {%endif%}
  • Meeting room URL: {{r|roomurl}}

{% if r.description %}

{{r.description|safe}}

{% endif %}
{% endfor %}
{% else %}

You don't have any rooms listed right now...

{% endif %}
{% endblock %}