OpenSlides/openslides/projector/templates/projector/select_widgets.html
2012-08-15 13:42:25 +02:00

27 lines
745 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "projector/base_projector.html" %}
{% load i18n %}
{% block title %}{{ block.super }} {% trans 'Select widgets' %}{% endblock %}
{% block content %}
<h1>{% trans 'Select widgets' %}</h1>
<form action="" method="post">{% csrf_token %}
<ul>
{% for widget_name, widget in widgets.items %}
<li>
{{ widget.form.widget }} {{ widget }}
</li>
{% empty %}
<li>{% trans 'No widgets available' %}</li>
{% endfor %}
</ul>
<p>
<button class="button" type="submit">
<span class="icon ok">{% trans 'Save' %}</span>
</button>
</p>
</form>
{% endblock %}