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

15 lines
336 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 %}
{% if item.get_text %}
<h1>{{ item }}</h1>
{{ item.get_text|safe|linebreaks }}
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 %}