Re: "url" template function problem

2007-12-22 Thread Christos Τrochalakis
On 12/22/07, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > On Wed, 2007-12-19 at 08:15 -0800, Trochalakis Christos wrote: > > Hello there, > > > > I'm trying to use the "url" template function but i cant make it work. > > > > My attempt: > > > > urls.py: > > > > urlpatterns = patterns('', > >

Re: "url" template function problem

2007-12-21 Thread Malcolm Tredinnick
On Wed, 2007-12-19 at 08:15 -0800, Trochalakis Christos wrote: > Hello there, > > I'm trying to use the "url" template function but i cant make it work. > > My attempt: > > urls.py: > > urlpatterns = patterns('', > url(r'^$', > date_based.archive_index, > entry_info, >

"url" template function problem

2007-12-19 Thread Trochalakis Christos
Hello there, I'm trying to use the "url" template function but i cant make it work. My attempt: urls.py: urlpatterns = patterns('', url(r'^$', date_based.archive_index, entry_info, name = 'blog_index'), url(r'^(?P\d{4})/(?P\w{3})/(?P\d{2})/(?P[- \w]+)/$',