OpenSlides/openslides/agenda/templates/projector/AgendaText.html
Emanuel Schuetze 719ea6ec79 #93: Show application number in header of projector template.
Some more projetor style work.
2012-04-24 22:27:16 +02:00

19 lines
433 B
HTML

{% extends "base-projector.html" %}
{% load i18n %}
{% block title %}{{ block.super }} - {{ item }}{% endblock %}
{% block content %}
{% if item.get_text %}
<h1>{{ item }}</h1>
{% else %}
<div class="item_fullscreen">{{ item }}</div>
{% endif %}
{% endblock %}
{% block scrollcontent %}
{% if item.get_text %}
<span>{{ item.get_text|safe|linebreaks }}</span>
{% endif %}
{% endblock %}