#217 show agenda text again.

This commit is contained in:
Oskar Hahn 2012-06-19 10:19:43 +02:00
parent e8bf2fce1a
commit b6cb4223f2
2 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,7 @@
{% block content %}
<h1>{{ item }}</h1>
<p>{{ item.get_text|safe|linebreaks }}</p>
<p>{{ item.text|safe|linebreaks }}</p>
{% if perms.agenda.can_manage_agenda %}
{% if item.comment %}

View File

@ -5,7 +5,7 @@
{% block title %}{{ block.super }} - {{ item }}{% endblock %}
{% block content %}
{% if item.get_text %}
{% if item.text %}
<h1>{{ item }}</h1>
{% else %}
<div class="item_fullscreen">{{ item }}</div>
@ -13,7 +13,7 @@
{% endblock %}
{% block scrollcontent %}
{% if item.get_text %}
<span>{{ item.get_text|safe|linebreaks }}</span>
{% if item.text %}
<span>{{ item.text|safe|linebreaks }}</span>
{% endif %}
{% endblock %}
{% endblock %}