summaryrefslogtreecommitdiff
path: root/templates/apps/room/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/apps/room/list.html')
-rw-r--r--templates/apps/room/list.html44
1 files changed, 0 insertions, 44 deletions
diff --git a/templates/apps/room/list.html b/templates/apps/room/list.html
deleted file mode 100644
index 199dc89..0000000
--- a/templates/apps/room/list.html
+++ /dev/null
@@ -1,44 +0,0 @@
-{% extends "base.html" %}
-{% load datehumanize %}
-{% load roomurl %}
-{% block widgets %}
- $("#rooms").accordion({
- header: 'h3',
- active: false,
- event: "click",
- collapsible: true,
- navigation: true,
- animated: true
- });
-{% endblock %}
-{% block content %}
- <h1>Your Rooms</h1>
- {% if rooms %}
- <div id="rooms">
- {% for r in rooms %}
- <div id="{{r.id}}">
- <h3 class="listheader">{{r.name}}</h3>
- <div>
- <p>Created by {{r.creator}} {{r.timecreated|datehumanize}}.</p>
- <p>Meeting room URL: <a href="{{r|roomurl}}">{{r|roomurl}}</a></p>
- <div class="buttons">
- <ul>
- <li><div class="button"><a href="/room/{{r.id}}/modify">Modify Room</a></li>
- <li><div class="button"><a href="/room/{{r.id}}/delete">Delete Room</a></li>
- </ul>
- </div>
- </div>
- </div>
- {% endfor %}
- </div>
- {% else %}
- <p>You don't have any rooms listed right now...</p>
- {% endif %}
- <br/>
- <div class="buttons">
- <ul>
- <li><div class="button"><a href="/room/create">Create a new room</a></div></li>
- <!-- li><div class="button"><a href="/room/import">Modify an existing room</a></div></li -->
- </ul>
- </div>
-{% endblock %} \ No newline at end of file