blob: 33d3fe209bbd0cf532d0ec97d37f86810031867e (
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 class="btn btn-mini btn-success" href="{{BASE_URL}}go/{{room.id}}">{{room.name}}</a> hosted on {{room.sco.acc.name}}</li>
{% endfor %}
</ul>
{% endblock %}
|