#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 %} {% block content %}
<h1>{{ item }}</h1> <h1>{{ item }}</h1>
<p>{{ item.get_text|safe|linebreaks }}</p> <p>{{ item.text|safe|linebreaks }}</p>
{% if perms.agenda.can_manage_agenda %} {% if perms.agenda.can_manage_agenda %}
{% if item.comment %} {% if item.comment %}

View File

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