1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2024-05-06 21:38:18 +00:00

orga template: fix missing </fieldset>

This commit is contained in:
Franzi 2021-11-22 12:12:06 +01:00
parent 213db3f640
commit 2e745f5fe3
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -12,41 +12,43 @@
</legend> </legend>
{% bootstrap_field form.lower_thirds_no_talk_info layout='event' %} {% bootstrap_field form.lower_thirds_no_talk_info layout='event' %}
{% bootstrap_field form.lower_thirds_info_string layout='event' %} {% bootstrap_field form.lower_thirds_info_string layout='event' %}
<p> <p>
The info line will be shown on the bottom right side of your The info line will be shown on the bottom right side of your
lower third. If you set it to an empty string, it will automatically lower third. If you set it to an empty string, it will automatically
hide itself. hide itself.
</p> </p>
<p> <p>
pretalx will automatically replace some placeholders in your info pretalx will automatically replace some placeholders in your info
string. string.
Use <code>{CODE}</code> to embed the talk code (<code>MUX9U3</code> Use <code>{CODE}</code> to embed the talk code (<code>MUX9U3</code>
for example). You could use this to directly link to the talk for example). You could use this to directly link to the talk
feedback page. feedback page.
Use <code>{EVENT_SLUG}</code> to get the event slug. Use <code>{EVENT_SLUG}</code> to get the event slug.
Use <code>{TALK_SLUG}</code> to get the talk slug. Use <code>{TALK_SLUG}</code> to get the talk slug.
</p> </p>
{% if request.event.rooms %} {% if request.event.rooms %}
<h3>{% trans "room list" %}</h3> <h3>{% trans "room list" %}</h3>
<ul> <ul>
{% for room in request.event.rooms.all %} {% for room in request.event.rooms.all %}
<li><a href="{% url 'plugins:pretalx_broadcast_tools:lowerthirds' request.event.slug %}#{{ room.name }}">{{ room.name }}</a></li> <li><a href="{% url 'plugins:pretalx_broadcast_tools:lowerthirds' request.event.slug %}#{{ room.name }}">{{ room.name }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}
</fieldset>
<div class="submit-group panel"> <fieldset>
<span></span> <div class="submit-group panel">
<span class="d-flex flex-row-reverse"> <span></span>
<button <span class="d-flex flex-row-reverse">
type="submit" class="btn btn-success btn-lg" <button
name="action" value="save" type="submit" class="btn btn-success btn-lg"
> name="action" value="save"
<i class="fa fa-check"></i> >
{% trans "Save" %} <i class="fa fa-check"></i>
</button> {% trans "Save" %}
</span> </button>
</div> </span>
</div>
</fieldset>
</form> </form>
{% endblock %} {% endblock %}