summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2012-11-01 01:25:23 +0100
committerLeif Johansson <leifj@sunet.se>2012-11-01 01:25:23 +0100
commitf131d65477d055c5a50cadd719c2c46d69e00289 (patch)
tree2f8e267c2e8b52fc44b19a780ae47e8b8216b6a0 /templates
parent7e899faf1b3e558e3f6cbb690a84d5ba21ae8661 (diff)
handle the non-uniqueness of room urlpaths
Diffstat (limited to 'templates')
-rw-r--r--templates/apps/room/choose.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/apps/room/choose.html b/templates/apps/room/choose.html
new file mode 100644
index 0000000..c933b5a
--- /dev/null
+++ b/templates/apps/room/choose.html
@@ -0,0 +1,15 @@
+{% extends "base.html" %}
+{% block content %}
+<div class="page-header">
+ <h1>Choose which room to visit</h1>
+</div>
+<div class="alert">
+ <i class="icon-info-sign"> </i>
+ Multiple rooms match your search. Please select which one to visit from the list below:
+</div>
+ <ul class="unstyled">
+ {% for room in rooms %}
+ <li><a href="{{BASE_URL}}go/{{room.id}}">{{room}} hosted on {{room.sco.acc.name}}</a></li>
+ {% endfor %}
+ </ul>
+{% endblock %} \ No newline at end of file