{% extends "base.html" %} {% load wagtailcore_tags %} {% block content %}
{% include "utils/includes/media_box_icon.html" with page_icon=page.icon %} {% if page.introduction %}

{{ page.introduction }}

{% endif %}
{{ page.body }}
{% with contact_details=page.contact_details.all %} {% if contact_details %}
Get the word out
{% for contact in contact_details %} {% endfor %} {% endif %} {% endwith %}
{% include "projects/includes/project_status.html" %}
{% include "utils/includes/funding.html" %}
{% if page.category_options.all %}
{% regroup page.category_options by category as categories %} {% for category, options in categories %}

{{ category.name }}

    {% for option in options %}
  • {{ option.value }}
  • {% endfor %}
{% endfor %}
{% endif %} {% if page.news_mentions.all %}

We wrote about it

{% endif %}
{% include "includes/relatedcontent.html" with related_pages=page.related_pages.all %} {% endblock content %}