A user has to select a vehicle type, then based on his selection he then has options of selecting a vehicle model, then based on that selection he will have the option of viewing specific colours available for that model.
There are separate django models for each of vehicle, model, and colour, where each vehicle instance has many models (many to many field) and each model has colours (many to many field).
How would you create a template so that the user is able to dynamically do this? I don't want to be redirected to different views. I'm thinking I would need to use jquery so that the user can select the vehicle from a drop down box, then based on his choice another drop down box appears etc..
Any ideas?