{% extends 'base.html' %} {% block content %} {% if request.user.is_staff %}
Edit
{% endif %}

{{ content.title }}

{{ content.header|safe }}

{{ content.body|safe }}

{% if content.optbtn2 and content.opttext2 %}

{{ content.optbtn2|safe }}

{{ content.opttext2|safe|linebreaks }}

{% endif %} {% if content.optbtn3 and content.opttext3 %}

{{ content.optbtn3|safe }}

{{ content.opttext3|safe|linebreaks }}

{% endif %} {% if content.schedule %}

{{content.schedulebutton|default:"Schedule"}}

{{ content.schedule|safe|linebreaks }}

{% endif %}
In This Event:
{% if content.resources.exists %} {% if content.links.exists %} {% endif %} {% if content.images.exists %}
Images:
{% for res in content.images %}
{% if res.is_image %} {% elif res.is_audio %} {% elif res.is_video %} {% else %} {{res.description|default:res.href}} {% endif %}
{% endfor %}
{% endif %} {% endif %}
{% endblock %}