Is it possible to link specific templates for different flatpages in Django?
For example:
/about/ -> templates/flatpages/about.html
/contact/ -> templates/flatpages/contact.html
This is what I have but all these pages point to the default.html template
url(r'^(?P<url>about/)$', 'django.contrib.flatpages.views.flatpage'),
url(r'^(?P<url>contact/)$', 'django.contrib.flatpages.views.flatpage'),
url(r'^(?P<url>feedback/)$', 'django.contrib.flatpages.views.flatpage'),