comparison sat_templates/templates/default/chat/select.html @ 164:e9f0a4215e46

multi-sites handling (moved templates to "templates" sub-directory) + noscript styles handling.
author Goffi <goffi@goffi.org>
date Mon, 10 Sep 2018 08:53:33 +0200
parents sat_templates/default/chat/select.html@954759f0e8fa
children
comparison
equal deleted inserted replaced
163:33f67228686a 164:e9f0a4215e46
1 {% if not embedded %}{% extends 'base/base.html' %}{% endif %}
2 {% import 'input/form.html' as form with context %}
3 {% import 'input/field.html' as field with context %}
4
5 {% block body %}
6 <p class="instructions--head">{% trans %}Please select the chat room you want to enter{% endtrans %}</p>
7 <ul class="rooms_list">
8 {% for room in rooms %}
9 <li><a href="{{room.url}}">{{room.name}}</a></li>
10 {% endfor %}
11 </ul>
12 <p class="instructions--alt">{% trans %}Or enter a room address{% endtrans %}</p>
13 {% call form.form(class="form--single") %}
14 {{ field.text("jid", _("Room address (JID)"), required=true)}}
15 {{ field.submit(_("Join")) }}
16 {% endcall %}
17 {% endblock body %}