blob: fbd630416a4bc7e9387c4be72734778400bc80a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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.name}} hosted on {{room.sco.acc.name}}</a></li>
{% endfor %}
</ul>
{% endblock %}
|