Dynamic SEO-friendly URLs
I'd like to deploy dynamic URL's for my app in two ways: when viewing available vehicle, I get a link like: http://www.url.com/2006-Acura-MDX-Technology-Package I also have a filter page, so here, the URL will change according to the filters selected like: http://www.url.com/2007-Nissan or http://www.url.com/2007-Nissan-Maxima and so on depending on the filters the user has chosen. What's the best way to go about this? EDIT 1 This now works def get_absolute_url(self): return u'%s-%s-%s-%s-%s' % (self.common_vehicle.year.year, self.common_vehicle.series.model.manufacturer, self.common_vehicle