{% extends "djinn_contenttypes/base_detail.html" %} {% load auth_tags i18n contentaction_tags %} {% block content %}
{{ object.text|default:""|safe }}
{% trans "Start date" %}
{{ object.start_date }}
{% if object.end_date %}
{% trans "(Expected) end date" %}
{{ object.end_date }}
{% endif %}
{% trans "Status" %}
{{ object.formatted_status }}
{% if object.updates.all.exists %}

Updates {% ifpermission object request.user contenttypes.change_contenttype %} {% endifpermission %}

{% include "djinn_announcements/snippets/updates.html" %}
{% endif %} {% endblock %} {% block right-pane %}
{% ifpermission object request.user contenttypes.change_contenttype %} {% edit_content object 'Bewerken' '' %} {% endifpermission %}
{% endblock %}