{% extends "projector/base_projector.html" %} {% load tags %} {% load i18n %} {% load staticfiles %} {% block header %} {% endblock %} {% block content %}

{% trans 'Projector' %}

{% trans "Adjust projector view" %}:
{% for name, widget in widgets.items %} {% if name != 'projector' %}
{% trans widget.get_title %}
{{ widget.html }}
{% endif %} {% endfor %}
{% trans "Projector Live View" %}
{% trans 'Overlays' %}
    {% for overlay in overlays %}
  • {{ overlay }}: {# TODO: Call the html via overlay.html #} {# Countdown #} {% if overlay.def_name == "Countdown" %} {% include 'projector/control_countdown.html' %} {% endif %} {% if overlay.def_name == "Message" %} {% include 'projector/control_overlay_message.html' %} {% endif %}
  • {% endfor %}
{% with widget=widgets.projector %}
{% trans "Custom slides" %}
{{ widget.html }}
{% endwith %}
{% endblock %}