OpenSlides/openslides/agenda/templates/projector/AgendaText.html

20 lines
422 B
HTML
Raw Normal View History

2012-02-06 22:08:08 +01:00
{% extends "base-projector.html" %}
2012-02-20 20:35:12 +01:00
{% load i18n %}
{% block title %}{{ block.super }} - {{ item }}{% endblock %}
2012-02-20 20:35:12 +01:00
2011-07-31 10:46:29 +02:00
{% block content %}
2012-06-19 10:19:43 +02:00
{% if item.text %}
<h1>{{ item }}</h1>
2011-07-31 10:46:29 +02:00
{% else %}
<div class="item_fullscreen">{{ item }}</div>
2011-07-31 10:46:29 +02:00
{% endif %}
{% endblock %}
{% block scrollcontent %}
2012-06-19 10:19:43 +02:00
{% if item.text %}
<span>{{ item.text|safe|linebreaks }}</span>
{% endif %}
2012-06-19 10:19:43 +02:00
{% endblock %}