On 1/21/06, Maniac <[EMAIL PROTECTED]> wrote: > 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?
In that case, you won't be able to use the prefix shortcut, because none of your views will share the same prefix. You'll have to put the whole view name (e.g. 'django.views.generic.something' or 'project.apps.app_name.views.index') next to each URL. Adrian -- Adrian Holovaty holovaty.com | djangoproject.com | chicagocrime.org