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

{{ manufacturer.name }}

{% if manufacturer.description %}

{{ manufacturer.description }}

{% endif %}
{% if manufacturer.founded_year %}

Founded

{{ manufacturer.founded_year }}

{% endif %} {% if manufacturer.headquarters %}

Headquarters

{{ manufacturer.headquarters }}

{% endif %}

Rides Manufactured

{{ rides.count }}

{% if rides %}

Rides Manufactured

{% for ride in rides %}
{% if ride.main_image %} {{ ride.name }} {% endif %}

{{ ride.name }}

{% if ride.park %}

{{ ride.park.name }}

{% endif %}
{% if ride.ride_type %}

{{ ride.ride_type }}

{% endif %} {% if ride.opened_date %}

Opened {{ ride.opened_date|date:"Y" }}

{% endif %}
{% endfor %}
{% else %}

Rides Manufactured

No rides currently manufactured by this company.

{% endif %} {% if manufacturer.website %}

Links

{% endif %}
{% endblock %}