{% extends 'base/base.html' %} {% load static %} {% block title %}{{ company.name }} - ThrillWiki{% endblock %} {% block content %}

{{ company.name }}

{% if company.headquarters %}

{{ company.headquarters }}

{% endif %}
{% if company.website %} Visit Website {% endif %} {% if user.is_authenticated %} Edit {% endif %}
{% if company.description %}
{{ company.description|linebreaks }}
{% endif %}
{{ parks.count }}
Theme Parks
{{ parks|length }}
Active Parks
{% with total_rides=0 %} {% for park in parks %} {% with total_rides=total_rides|add:park.rides.count %}{% endwith %} {% endfor %} {{ total_rides }} {% endwith %}
Total Attractions

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 %}