comparison default/chat/select.html @ 128:4f27ce980ced

css: started to refactor CSS class to follow BEM conventions
author Goffi <goffi@goffi.org>
date Sat, 24 Mar 2018 11:14:14 +0100
parents 92ca411ee635
children
comparison
equal deleted inserted replaced
127:27d6453a6209 128:4f27ce980ced
1 {% if not embedded %}{% extends 'base/base.html' %}{% endif %} 1 {% if not embedded %}{% extends 'base/base.html' %}{% endif %}
2 {% import 'input/form.html' as form with context %} 2 {% import 'input/form.html' as form with context %}
3 {% import 'input/field.html' as field with context %} 3 {% import 'input/field.html' as field with context %}
4 4
5 {% block body %} 5 {% block body %}
6 <p class="instructions">{% trans %}Please select the chat room you want to enter{% endtrans %}</p> 6 <p class="instructions--head">{% trans %}Please select the chat room you want to enter{% endtrans %}</p>
7 <ul class="rooms_list"> 7 <ul class="rooms_list">
8 {% for room in rooms %} 8 {% for room in rooms %}
9 <li><a href="{{room.url}}">{{room.name}}</a></li> 9 <li><a href="{{room.url}}">{{room.name}}</a></li>
10 {% endfor %} 10 {% endfor %}
11 </ul> 11 </ul>
12 <p class="instructions room_jid">{% trans %}Or enter a room address{% endtrans %}</p> 12 <p class="instructions--alt">{% trans %}Or enter a room address{% endtrans %}</p>
13 {% call form.form(class="room_jid_form") %} 13 {% call form.form(class="form_single") %}
14 {{ field.text("jid", _("Room address (JID)"), required=true)}} 14 {{ field.text("jid", _("Room address (JID)"), required=true)}}
15 {{ field.submit(_("Join")) }} 15 {{ field.submit(_("Join")) }}
16 {% endcall %} 16 {% endcall %}
17 {% endblock body %} 17 {% endblock body %}