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