17 lines
390 B
HTML
17 lines
390 B
HTML
{% extends "agenda/base_agenda.html" %}
|
||
|
||
{% load i18n %}
|
||
|
||
{% block title %}{{ block.super }} – {{ item.title }}{% endblock %}
|
||
|
||
{% block content %}
|
||
<h1>{{ item }}</h1>
|
||
<p>{{ item.get_text|safe|linebreaks }}</p>
|
||
|
||
{% if perms.agenda.can_manage_agenda and item.comment %}
|
||
<h2>{% trans "Comment" %}</h2>
|
||
<p>{{ item.comment|linebreaks }}</p>
|
||
{% endif %}
|
||
|
||
{% endblock %}
|