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

Rides

{% if user.is_authenticated %} Add Ride {% endif %}
{% for ride in rides %}
{% if ride.photos.exists %}
{{ ride.name }}
{% endif %}

{{ ride.name }}

at {{ ride.park.name }}

{{ ride.get_category_display }} {{ ride.get_status_display }} {% if ride.average_rating %} {{ ride.average_rating|floatformat:1 }}/10 {% endif %}
{% if ride.coaster_stats %}
{% if ride.coaster_stats.height_ft %}
Height: {{ ride.coaster_stats.height_ft }}ft
{% endif %} {% if ride.coaster_stats.speed_mph %}
Speed: {{ ride.coaster_stats.speed_mph }}mph
{% endif %}
{% endif %}
{% empty %}

No rides found matching your criteria.

{% endfor %}
{% if is_paginated %}
{% if page_obj.has_previous %} « First Previous {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Next Last » {% endif %}
{% endif %}
{% endblock %}