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

Ride Designers

Discover the creative minds behind the world's most innovative attractions. {{ total_designers }} designer{{ total_designers|pluralize }} found.

{% for designer in designers %}

{{ designer.name }}

{% if designer.founded_date %}

Founded {{ designer.founded_date.year }}

{% endif %}
{{ designer.ride_count }} ride{{ designer.ride_count|pluralize }}
{% if designer.description %}

{{ designer.description|truncatewords:20 }}

{% endif %}
{% if designer.website %} Website {% else %} {% endif %} View Rides →
{% empty %}

No designers found

There are no designers to display at this time.

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