Hi, everyone!
I have an urlconf file in my app with a convinient prefix to my view functions:
urlpatterns = patterns('project.apps.app_name.views', (r'$', 'index', None), ... )Now I want to use generic views in the same app and the prefix to my views gets in the way being added before 'django.views.generic.something'.
It looks to me that this thing must be dead simple... What did I miss? Thank you in advance.