Re: Reverse for 'post_detail' with arguments '()' and keyword arguments '{'pk': 1}' not found. 1 pattern(s) tried:

2015-09-24 Thread sankar vasu
e this ? > > urlpatterns = patterns('', > url(*r'^$'*, include('blog.urls')),<-- The error is here > url(r'^admin/', include(admin.site.urls)), > ) > > > 2015-09-23 13:16 GMT-06:00 sankar vasu : > >> Dear Luis

Re: Reverse for 'post_detail' with arguments '()' and keyword arguments '{'pk': 1}' not found. 1 pattern(s) tried:

2015-09-23 Thread sankar vasu
Dear Luis, As you said, i tried but can't success. Thanks in advance Sankar B On Wed, Sep 23, 2015 at 12:29 AM, Luis Zárate wrote: > > 2015-09-22 12:48 GMT-06:00 sankar vasu : > >> {{ post.title >> }} > > > try: > > {{ post.title }} > > If no

Re: Reverse for 'post_detail' with arguments '()' and keyword arguments '{'pk': 1}' not found. 1 pattern(s) tried:

2015-09-22 Thread sankar vasu
ontent %} Thanks in Advance, Sankar B On Tue, Sep 22, 2015 at 8:32 AM, Luis Zárate wrote: > The error is in the template, please check the url statement inside the > template. > > Or share with ours the template file. > > El sábado, 19 de septiembre de 2015, sankar vasu >

Reverse for 'post_detail' with arguments '()' and keyword arguments '{'pk': 1}' not found. 1 pattern(s) tried:

2015-09-19 Thread sankar vasu
Hi All, I got below error, please advise. please look at the following link: http://pysan.pythonanywhere.com/ [image: Inline image 1] *url.py*from django.conf.urls import url from . import views urlpatterns = [ url(r'^$', views.post_list, name='post_list'), url(r'^post/(?P[0-9]+)/$',