summaryrefslogtreecommitdiff
path: root/templates/apps/room/choose.html
blob: c933b5ad5c6f5800dfe2835d1d06e15ae74a6860 (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}} hosted on {{room.sco.acc.name}}</a></li>
   {% endfor %}
   </ul>
{% endblock %}