{% extends "base.html" %} {% block content %}

{{ service.organisation.name }}

{% for category in service.categories %} {{ category.name }}
{% endfor %}
{% if service.age_range_min and service.age_range_max %}
{{ service.age_range_min }}-{{ service.age_range_max }} years
{% endif %}

What we do

{% for keyword in service.keywords %} {{ keyword.name }}{% if not forloop.last %}, {% endif %} {% endfor %}


Contact

{% if service.organisation.telephone %} {{ service.organisation.telephone }}
{% endif %} {% if service.organisation.email %} {{ service.organisation.email }}
{% endif %} {% if service.organisation.web %} {{ service.organisation.web }} {% endif %}


Trading Hours

{{ service.availability_hours }}


Address

{{ service.organisation.address }}

{% endblock %}