summaryrefslogtreecommitdiff
path: root/src/templates/apps/room/list.html
blob: a8c895414926a1dd1af44856faf9e76968cc160b (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{% extends "base.html" %}
{% load prefix %}
{% load datehumanize %}
{% load roomurl %}
{% load prefix %}
{% load tagging_tags %}
{% block widgets %}
    $("#rooms").accordion({
   		header: 'h3',
        active: false,
        event: "click", 
   		collapsible: true,
   		navigation: true,
   		animated: true,
   		autoHeight: false
   	});
{% endblock %}
{% block content %}
	<h1>{{title}}</h1>
	{% if rooms %}
	<div id="rooms">
		{% for r in rooms %}
		<div id="{{r.id}}">
		   <h3 class="listheader">{{r.name}}</h3>
		   <div>
		      <ul class="ilist">
		        <li style="vertical-align: top;">
		           <ul class="nlist square" style="margin-top: 5px;">
			         <li>Created by {{r.creator}} {{r.timecreated|datehumanize}}.</li>
			         {% if r.self_cleaning %}<li>Room will be reset when empty.</li>{%else%}<li>Room state is preserved between sessions.</li>{% endif %}
			         {% if r.lastvisited %}<li>Last visited {{r.lastvisited|datehumanize}}</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>
			  	     <li>Hosted on {{r.acc.name}}</li>
			  	   </ul>
			  	</li>
			  	{% tags_for_object r as tags %}
			  	<li style="vertical-align: top; width: 45%;">
			  		<ul class="nlist">
		   	  		   <li style="margin-top: 5px;" class="infopanel ui-widget ui-corner-all ui-state-highlight"><strong>{{r.name}}</strong><p>{% if r.description %}{{r.description|safe}}{% else %}<em>No description available...</em>{% endif %}</p></li>
			  		   <li style="margin-top: 5px;">Tags: {% for tag in tags %}<a style="margin-right: 5px;" class="ui-widget" href="{% prefix %}/room/+{{tag}}">{{tag}}</a>{% endfor %} {%if edit %}<a style="font-size: 75%;" href="{% prefix %}/room/{{r.id}}/tag"><em>... manage room tags</em></a>{%endif%}</li>
			  		</ul>
			  	</li>
			  </ul>
			   	 
		   	  <br/>
		   	  <ul class="ilist">
		   	  	 <li class="button"><a href="{% prefix %}/go/{{r.id}}">Enter Room</a></li>
		   	  	 {% if edit %}
		   	  	 <li class="button"><a href="{% prefix %}/room/{{r.id}}/tag">Room Tags</a></li>
		   	     <li class="button"><a href="{% prefix %}/room/{{r.id}}/modify">Modify Room</a></li>
		   	     <li class="button"><a href="{% prefix %}/room/{{r.id}}/delete">Delete Room</a></li> 
		   	  	 {% endif %}
		   	  </ul>
		   </div>
		</div>
		{% endfor %}
	</div>
	{% else %}
	<p>You don't have any rooms listed right now...</p>
	{% endif %}
	<br/>
	{% if edit %}
	<ul class="ilist">
	   <li><div class="button"><a href="{% prefix %}/room/create">Create a New Room</a></div></li>
	</ul>
	{% endif %}
{% endblock %}