{% 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 %}
{% if coaster_stats %} {% if coaster_stats.height_ft %}
Height
{{ coaster_stats.height_ft }} ft
{% endif %} {% if coaster_stats.speed_mph %}
Speed
{{ coaster_stats.speed_mph }} mph
{% endif %} {% if coaster_stats.inversions %}
Inversions
{{ coaster_stats.inversions }}
{% endif %} {% if coaster_stats.length_ft %}
Length
{{ coaster_stats.length_ft }} ft
{% endif %} {% endif %}
{% if ride.manufacturer %} {% endif %} {% if ride.designer %} {% endif %} {% if coaster_stats.roller_coaster_type %}
Coaster Type
{{ coaster_stats.get_roller_coaster_type_display }}
{% endif %} {% if coaster_stats.track_material %}
Track Material
{{ coaster_stats.get_track_material_display }}
{% endif %} {% if ride.opening_date %}
Opened
{{ ride.opening_date }}
{% endif %} {% if ride.capacity_per_hour %}
Capacity
{{ ride.capacity_per_hour }}/hr
{% endif %} {% if coaster_stats.launch_type %}
Launch Type
{{ coaster_stats.get_launch_type_display }}
{% 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
{{ ride.manufacturer }}
{% 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 %}

History

{% for record in ride.get_history %}
{{ record.history_date|date:"M d, Y H:i" }} {% if record.history_user_display %} by {{ record.history_user_display }} {% endif %}
{% for field, changes in record.diff_against_previous.items %}
{{ field|title }}: {{ changes.old }} {{ changes.new }}
{% endfor %}
{% empty %}

No history available.

{% endfor %}
{% 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 %}