url template tag in django template

Posted by user192048 on Stack Overflow See other posts from Stack Overflow or by user192048
Published on 2009-11-22T02:25:54Z Indexed on 2010/03/27 15:03 UTC
Read the original article Hit count: 378

guys: I was trying to use the url template tag in django, but no lucky,

I defined my urls.py like this

urlpatterns = patterns('',            

                       url(r'^analyse/$',              views.home,  name="home"),
                       url(r'^analyse/index.html',     views.index, name="index"),
                       url(r'^analyse/setup.html',     views.setup, name="setup"),
                       url(r'^analyse/show.html',      views.show,  name="show"),
                       url(r'^analyse/generate.html',  views.generate, name="generate"),

I defined the url pattern in my view like this

{% url 'show'%}

then I got this error message

Caught an exception while rendering: Reverse for ''show'' with arguments '()' and keyword arguments '{}' not found.

Original Traceback (most recent call last): File "/Library/Python/2.5/site-packages/django/template/debug.py", line 71, in render_node result = node.render(context) File "/Library/Python/2.5/site-packages/django/template/defaulttags.py", line 155, in render nodelist.append(node.render(context)) File "/Library/Python/2.5/site-packages/django/template/defaulttags.py", line 382, in render raise e NoReverseMatch: Reverse for ''show'' with arguments '()' and keyword arguments '{}' not found.

I am wondering why django failed to render? what is the right way to define it in the tempalte?

© Stack Overflow or respective owner

Related posts about django-templates

Related posts about django-urls