{% extends 'base/base.html' %} {% load static %} {% block title %}{{ ride.name }} at {{ ride.park.name }} - ThrillWiki{% endblock %} {% block content %}
{% if user.is_authenticated %}
Edit {% if perms.media.add_photo %} {% endif %}
{% endif %}

{{ ride.name }}

at {{ ride.park.name }} {% if ride.park_area %} - {{ ride.park_area.name }} {% endif %}
{{ ride.get_status_display }} {{ ride.get_category_display }} {% if ride.average_rating %} {{ ride.average_rating|floatformat:1 }}/10 {% endif %}
Statistics
{% if coaster_stats.height_ft %}
{{ coaster_stats.height_ft }}ft high
{% endif %} {% if coaster_stats.speed_mph %}
{{ coaster_stats.speed_mph }}mph
{% endif %} {% if coaster_stats.length_ft %}
{{ coaster_stats.length_ft }}ft long
{% endif %}
Experience
{{ ride.get_category_display }}
{% if coaster_stats.ride_time_seconds %}
{{ coaster_stats.ride_time_seconds }}s ride
{% endif %} {% if ride.min_height_in %}
{{ ride.min_height_in }}" min
{% endif %}
Manufacturer
{% if ride.manufacturer %} {{ ride.manufacturer.name }} {% else %} Unknown {% endif %} {% if ride.model_name %}
{{ ride.model_name }}
{% endif %}
History
{% if ride.opening_date %}
Opened {{ ride.opening_date }}
{% endif %} {% if ride.designer %}
by {{ ride.designer.name }}
{% endif %} {% if ride.status_since %}
{{ ride.get_status_display }} since {{ ride.status_since }}
{% endif %}
Performance
{% if ride.average_rating %}
★ {{ ride.average_rating|floatformat:1 }}/10
{% endif %} {% if ride.capacity_per_hour %}
{{ ride.capacity_per_hour }}/hr
{% endif %} {% if coaster_stats.inversions %}
{{ coaster_stats.inversions }} inversions
{% endif %}
{% if ride.photos.exists %}

Photos

{% include "media/partials/photo_display.html" with photos=ride.photos.all content_type="rides.ride" object_id=ride.id %}
{% endif %}

Reviews

{% if user.is_authenticated %} {% endif %}
{% if ride.reviews.exists %}
{% for review in ride.reviews.all %}

{{ review.title }}

by {{ review.user.username }} on {{ review.created_at|date }}

{{ review.rating }}/10

{{ review.content }}

{% endfor %}
{% else %}

No reviews yet. Be the first to review this ride!

{% endif %}
{% if ride.description %}

Trivia

{{ ride.description|linebreaks }}
{% endif %} {% if ride.previous_names %}

Previous Names

{% for name_history in ride.previous_names %}
{{ name_history.name }} {{ name_history.period }}
{% endfor %}
{% endif %} {% if coaster_stats %}

Roller Coaster Statistics

{% if coaster_stats.roller_coaster_type %}
Coaster Type {{ coaster_stats.get_roller_coaster_type_display }}
{% endif %} {% if coaster_stats.height_ft %}
Maximum Height {{ coaster_stats.height_ft }} ft
{% endif %} {% if coaster_stats.max_drop_height_ft %}
Drop Height {{ coaster_stats.max_drop_height_ft }} ft
{% endif %} {% if coaster_stats.length_ft %}
Track Length {{ coaster_stats.length_ft }} ft
{% endif %} {% if coaster_stats.track_type %}
Track Layout {{ coaster_stats.track_type }}
{% endif %} {% if coaster_stats.track_material %}
Track Material {{ coaster_stats.get_track_material_display }}
{% endif %} {% if coaster_stats.speed_mph %}
Maximum Speed {{ coaster_stats.speed_mph }} mph
{% endif %} {% if coaster_stats.ride_time_seconds %}
Ride Duration {{ coaster_stats.ride_time_seconds }} sec
{% endif %} {% if coaster_stats.train_style %}
Train Style {{ coaster_stats.train_style }}
{% endif %} {% if coaster_stats.trains_count %}
Number of Trains {{ coaster_stats.trains_count }}
{% endif %} {% if coaster_stats.cars_per_train %}
Cars per Train {{ coaster_stats.cars_per_train }}
{% endif %} {% if coaster_stats.seats_per_car %}
Seats per Car {{ coaster_stats.seats_per_car }}
{% endif %} {% if coaster_stats.inversions %}
Inversions {{ coaster_stats.inversions }}
{% endif %} {% if coaster_stats.launch_type %}
Launch Type {{ coaster_stats.get_launch_type_display }}
{% endif %}
{% endif %}

Quick Facts

Manufacturer
{% if ride.manufacturer %} {{ ride.manufacturer.name }} {% else %} Not specified {% endif %}
{% if ride.designer %} {% endif %} {% if ride.model_name %}
Model
{{ ride.model_name }}
{% endif %} {% if ride.opening_date %}
Opening Date
{{ ride.opening_date }}
{% endif %} {% if ride.status_since %}
Status Since
{{ ride.status_since }}
{% endif %} {% if ride.closing_date %}
Closing Date
{{ ride.closing_date }}
{% endif %} {% if ride.capacity_per_hour %}
Capacity
{{ ride.capacity_per_hour }} riders/hour
{% endif %} {% if ride.min_height_in %}
Minimum Height
{{ ride.min_height_in }} inches
{% endif %}
{% include "rides/partials/history_panel.html" with history=history %}
{% if perms.media.add_photo %}

Upload Photos

{% include "media/partials/photo_upload.html" with content_type="rides.ride" object_id=ride.id %}
{% endif %} {% endblock content %} {% block extra_js %} {% endblock %}