{% extends "base/base.html" %} {% load static %} {% block title %}{{ area.name }} - {{ area.park.name }} - ThrillWiki{% endblock %} {% block content %}

{{ area.name }}

{% if user.is_authenticated %} Edit {% endif %}
{% if area.description %}
{{ area.description|linebreaks }}
{% endif %} {% if area.opening_date or area.closing_date %}
{% if area.opening_date %}
Opened: {{ area.opening_date }}
{% endif %} {% if area.closing_date %}
Closed: {{ area.closing_date }}
{% endif %}
{% endif %}
{% if area.rides.exists %}

Rides & Attractions

{% else %}

No rides or attractions listed in this area yet.

{% endif %}
{% endblock %}