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

Ride Manufacturers

Companies that manufacture theme park rides and attractions

{% for manufacturer in manufacturers %}

{{ manufacturer.name }}

{% if manufacturer.description %}

{{ manufacturer.description|truncatewords:20 }}

{% endif %}
{% if manufacturer.rides_count %} {{ manufacturer.rides_count }} ride{{ manufacturer.rides_count|pluralize }} {% endif %} {% if manufacturer.founded_year %} Founded {{ manufacturer.founded_year }} {% endif %}
{% empty %}

No manufacturers found.

{% endfor %}
{% if is_paginated %}
{% endif %}
{% endblock %}