{% extends 'base/base.html' %} {% load static %} {% block title %}{{ company.name }} - ThrillWiki{% endblock %} {% block content %}
{% if company.website %} Visit Website {% endif %} {% if user.is_authenticated %} Edit {% endif %}

{{ company.name }}

{% if company.headquarters %}

{{ company.headquarters }}

{% endif %}
Total Parks
{{ parks.count }}
Active Parks
{{ parks|length }}
Total Attractions
{{ total_rides }}
{% if company.founded_date %}
Founded
{{ company.founded_date }}
{% endif %} {% if company.website %}
Website
Visit
{% endif %}
{% if company.description %}

About

{{ company.description|linebreaks }}
{% endif %}

Theme Parks

{% for park in parks %}
{% if park.photos.exists %} {{ park.name }} {% else %}
No image available
{% endif %}

{{ park.name }}

{{ park.location }}

{{ park.rides.count }} attractions {% if park.average_rating %}
{{ park.average_rating|floatformat:1 }}/10
{% endif %}
{% empty %}

No parks found for this company.

{% endfor %}
{% endblock %}