{% extends 'page.html' %} {% block page_content %}

{{ doctor.name }}

{% if doctor.about %}
About
{{ doctor.about|safe }}
{% endif %} {% if doctor.undergraduate_training or doctor.postgraduate_training %}
Training
{% if doctor.undergraduate_training %} Undergraduate: {{ doctor.undergraduate_training|safe }} {% endif %} {% if doctor.postgraduate_training %} Post-Graduate: {{ doctor.postgraduate_training|safe }} {% endif %}
{% endif %} {% if doctor.get_qualifications %}
Qualifications
{% for qualification in doctor.get_qualifications %}
{% if qualification.month and qualification.year %}{{ qualification.month }}, {{ qualification.year }}{% endif %} {{ qualification.qualification }} {% if qualification.location %}({{ qualification.location }}){% endif %}
{% endfor %}
{% endif %} {% if doctor.appointments %}
Current NHS Appointments Appointed 2006
{{ doctor.appointments|safe }}
{% endif %} {% if doctor.private_practices %}
Private Practice Hospitals
{{ doctor.private_practices|safe }}
{% endif %} {% if doctor.office_locations %}
Positions of Office
{{ doctor.office_locations|safe }}
{% endif %} {% if doctor.get_memberships %}
Member
{% for membership in doctor.get_memberships %}
{{ membership.name }}
{% endfor %}
{% endif %} {% if doctor.get_links %}
Links to other sites
{% for link in doctor.get_links %}
{{ link.name }}
{% endfor %}
{% endif %} {% if doctor.research %}
Research
{{ doctor.research|safe }}
{% endif %} {% if doctor.publications %}
Publications
{{ doctor.publications|safe }}
{% endif %} {% endblock %}