Hey Avnesh,

In your templates you have written following lines

<a href="{% url home %}">home</a><a href="{% url about %}">about</a><a
href="{% url archive %}">archive</a><a href="{% url contact
%}">contact</a>

Change them to following, notice single quotes surrounding url pattern name

<a href="{% url 'home' %}">home</a><a href="{% url 'about'
%}">about</a><a href="{% url 'archive' %}">archive</a><a href="{% url
'contact' %}">contact</a>



Sincerely,
Pankaj Singh
http://about.me/psjinx


On Tue, Feb 19, 2013 at 4:06 PM, Avnesh Shakya <avnesh.n...@gmail.com>wrote:

>
>
> On Tue, Feb 19, 2013 at 3:47 PM, Avnesh Shakya <avnesh.n...@gmail.com>wrote:
>
>> ya i have completed and i m just doing copy n paste from from tutorial
>> but there is no error but i m facing this error again n again...
>> https://www.udemy.com/full-django-tutorial/#lecture/63701/question/9902
>> can i add my page for help. i need your help plz..
>>
>>
>>
>> On Tue, Feb 19, 2013 at 3:39 PM, Thomas Weholt 
>> <thomas.weh...@gmail.com>wrote:
>>
>>> It means you haven't added any url matching / in your urlconfig, but
>>> it's hard to give a good answer without a bit more information. Have
>>> you completed the django tutorial which explains how these things
>>> work?
>>>
>>> Thomas
>>>
>>> On Tue, Feb 19, 2013 at 11:04 AM, Avnesh Shakya <avnesh.n...@gmail.com>
>>> wrote:
>>> > Hello, I'm stuck in teplagte page......... error is occuring here after
>>> > runserver..
>>> >
>>> > error..
>>> >
>>> >  NoReverseMatch at / Reverse for '' with arguments '()' and keyword
>>> > arguments '{}' not found.
>>> >
>>> > I can't figure out why I'm getting the error, plz tell me, i have
>>> totally
>>> > confused here.
>>> >
>>> >
>>> > thanks
>>> >
>>> > avnesh shakya
>>> >
>>> > --
>>> > You received this message because you are subscribed to the Google
>>> Groups
>>> > "Django users" group.
>>> > To unsubscribe from this group and stop receiving emails from it, send
>>> an
>>> > email to django-users+unsubscr...@googlegroups.com.
>>> > To post to this group, send email to django-users@googlegroups.com.
>>> > Visit this group at http://groups.google.com/group/django-users?hl=en.
>>> > For more options, visit https://groups.google.com/groups/opt_out.
>>> >
>>> >
>>>
>>>
>>>
>>> --
>>> Mvh/Best regards,
>>> Thomas Weholt
>>> http://www.weholt.org
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/django-users?hl=en.
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>>
>>>
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to