blob: 6c39e12e052ae17d83b29f8fb493e065e6b8e209 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{% 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 %}
<h1>Your meeting rooms</h1>
{% if rooms %}
<div id="rooms">
{% for r in rooms %}
<div id="{{r.id}}">
<h3 class="listheader">{{r.name}}</h3>
<div>
<ul>
<li>Created by {{r.creator}} {{r.timecreated|datehumanize}}.</li>
{% if r.lastvisited %}<li>Last visited {{r.lastvisited|datehumanize}}{% if r.user_count %}when there was {{r.user_count}} user{{r.user_count|pluralize}} in the room{%endif%}.</li>{%endif%}
<li>Meeting room URL: <a href="{{r|roomurl}}">{{r|roomurl}}<span style="vertical-align: bottom;" class="ui-icon ui-icon-extlink"></span></a></li>
</ul>
<br/>
{% if r.description %}
<p class="ui-widget">{{r.description|safe}}</p>
{% endif %}
<ul class="ilist">
<!-- li><div class="button"><a href="{% prefix %}/room/{{r.id}}/modify">Modify Room</a></li -->
<li><div class="button"><a href="{% prefix %}/room/{{r.id}}/delete">Delete Room</a></li>
</ul>
</div>
</div>
{% endfor %}
</div>
{% else %}
<p>You don't have any rooms listed right now...</p>
{% endif %}
<br/>
<ul class="ilist">
<li><div class="button"><a href="{% prefix %}/room/create">Create a new room</a></div></li>
</ul>
{% endblock %}
|