{% extends 'base/base.html' %} {% load static %} {% block title %}{% if is_edit %}Edit{% else %}Add{% endif %} Ride - ThrillWiki{% endblock %} {% block content %}

{% if is_edit %}Edit {{ object.name }}{% else %}Add New Ride{% endif %} {% if park %} {% endif %}

{% csrf_token %} {% if not park %} {# Park Selection - Only shown when creating from global view #}
Park Information
{% include 'forms/partials/form_field.html' with field=form.park_search label="Park" %} {{ form.park }}
{% if form.park.errors %} {% endif %}
{% endif %} {# Basic Information #}
Basic Information
{% include 'forms/partials/form_field.html' with field=form.name label="Name" %}
{% include 'forms/partials/form_field.html' with field=form.category label="Category" %}
{# Manufacturer and Model #}
Manufacturer and Model
{% include 'forms/partials/form_field.html' with field=form.manufacturer_search label="Manufacturer" %} {{ form.manufacturer }}
{% include 'forms/partials/form_field.html' with field=form.designer_search label="Designer" %} {{ form.designer }}
{% include 'forms/partials/form_field.html' with field=form.ride_model_search label="Ride Model" %} {{ form.ride_model }}
{# Status and Dates #}
Status and Dates
{% include 'forms/partials/form_field.html' with field=form.status label="Status" %}
{% include 'forms/partials/form_field.html' with field=form.status_since label="Status Since" %}
{% include 'forms/partials/form_field.html' with field=form.opening_date label="Opening Date" %}
{% include 'forms/partials/form_field.html' with field=form.closing_date label="Closing Date" %}
{% include 'forms/partials/form_field.html' with field=form.post_closing_status label="Status After Closing" %}
{# Specifications #}
Specifications
{% include 'forms/partials/form_field.html' with field=form.min_height_in label="Minimum Height (inches)" %}
{% include 'forms/partials/form_field.html' with field=form.max_height_in label="Maximum Height (inches)" %}
{% include 'forms/partials/form_field.html' with field=form.capacity_per_hour label="Hourly Capacity" %}
{% include 'forms/partials/form_field.html' with field=form.ride_duration_seconds label="Ride Duration (seconds)" %}
{# Description #}
Description
{% include 'forms/partials/form_field.html' with field=form.description label="Description" %}
{# Submission Details #}
Submission Details

Optional: Provide context for reviewers

Optional: Link or reference to your source

{# Submit Button #}
{% endblock %}