{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags %} {% block content %}

{{ page.first_name }} {{ page.last_name }}

{% if page.introduction %}

{{ page.introduction }}

{% endif %} {% if page.photo %} {% image page.photo original %} {% endif %} {% if page.job_title %}

{{ page.job_title }}

{% endif %} {% if page.website %}

{{ page.website }}

{% endif %} {% if page.email %}

{{ page.email }}

{% endif %} {% with contact_details=page.contact_details.all %} {% if contact_details %} {% for contact in contact_details %}

{{ contact.method_display }}: {{ contact.contact_detail }}

{% endfor %} {% endif %} {% endwith %}
{% include_block page.biography %}

Person types

{% for person_type in page.person_types.all %}

{{ person_type }}

{% endfor %}

Social Media Links

{% for item in page.social_media_profile.all %}

{{ item.get_service_display }}

{{ item.profile_url }}

{% endfor %}

Funding to date

{% for funding in page.funding.all %}
{{ funding.year }} ${{ funding.value }} {{ funding.duration }} months {{ funding.source }}
{% endfor %}

Total Funding: {{ page.total_funding }}

{% endblock %}