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

{{ manufacturer.name }}

{% if manufacturer.headquarters %}

{{ manufacturer.headquarters }}

{% endif %}
Company
{% if manufacturer.headquarters %}
{{ manufacturer.headquarters }}
{% endif %} {% if manufacturer.website %} {% endif %}
Total Rides
{{ rides.count }}
Coasters
{{ coaster_count }}
Founded
{% if manufacturer.founded_date %}
{{ manufacturer.founded_date }}
{% else %}
Unknown
{% endif %}
Est.
Specialties
Ride Manufacturer
{% if coaster_count > 0 %}
Roller Coasters
{% endif %} {% if rides.count > coaster_count %}
Other Rides
{% endif %}
{% if manufacturer.description %}

About

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

Rides

{% for ride in rides %}
{% if ride.photos.exists %} {{ ride.name }} {% else %}
No image available
{% endif %}

{{ ride.name }}

at {{ ride.park.name }}

{% if ride.coaster_stats %}
{% if ride.coaster_stats.height %}
Height: {{ ride.coaster_stats.height }}ft
{% endif %} {% if ride.coaster_stats.speed %}
Speed: {{ ride.coaster_stats.speed }}mph
{% endif %} {% if ride.coaster_stats.length %}
Length: {{ ride.coaster_stats.length }}ft
{% endif %}
{% endif %} {% if ride.average_rating %}
{{ ride.average_rating|floatformat:1 }}/10
{% endif %}
{% empty %}

No rides found for this manufacturer.

{% endfor %}
{% endblock %}