{% if area.children.count > 0 %}
{% for child in area.children.all %}
{% include 'tickle/area_list_item.html' with area=child %}
{% endfor %}
{% endif %}
{% if area.boulders.count > 0 %}
Boulders
{% for boulder in area.boulders.all %}
- {% include 'tickle/boulder_list_item.html' %}
{% endfor %}
{% endif %}
{% if area.routes.count > 0 %}
Routes
{% for route in area.routes.all %}
- {% include 'tickle/route_list_item.html' %}
{% endfor %}
{% endif %}