urls.py and views.generic issue

2011-02-19 Thread Antti
't it match the third one down? Thanks Antti -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubs

Re: urls.py and views.generic issue

2011-02-22 Thread Antti
ttp://127.0.0.1:8000/blog/ then the page loads using the list.html template as it should. I have included the main urls.py as well as the blog urls.py Thanks for responding! Antti main urls.py from django.conf.urls.defaults import * # Uncomment the next two lines to enable the admin: from

Re: urls.py and views.generic issue

2011-02-22 Thread Antti
ext line to enable the admin: (r'^admin/', include(admin.site.urls)), (r'^tags/(?P[a-zA-Z0-9_.-]+)/$', 'anttipetaisto.tag_views.tag_detail'), (r'^blog/', include('anttipetaisto.blog.urls')), (r'^static_files/(?P.*)$', &#x