summaryrefslogtreecommitdiff
path: root/templates/apps/room/choose.html
blob: b2d0ea23e1cd84ffe113d5b0985f3f3222cf14b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% 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>
   <dl>
   {% for room in rooms %}
        <dt><a href="{{BASE_URL}}go/{{room.id}}">{{room.name}}</a> - <a href="{{BASE_URL}}go/{{room.id}}">{{BASE_URL}}go/{{room.id}}</a><dt>
        <dd>
            Hosted on {{room.sco.acc.name}}

        </dd>
        {% if room.description %}
        <dd>
            {{room.description}}
        </dd>
        {% endif %}
        <dd><a class="btn btn-success btn-small" href="{{BASE_URL}}go/{{room.id}}">Enter Room</a></dd>
   {% endfor %}
   </dl>
{% endblock %}