Index: /home/nagyv/versioning/svn/django/docs/templates.txt =================================================================== --- /home/nagyv/versioning/svn/django/docs/templates.txt (revision 7882) +++ /home/nagyv/versioning/svn/django/docs/templates.txt (working copy) @@ -1168,7 +1168,7 @@ takes a client ID (here, ``client()`` is a method inside the views file ``app_views.py``). The URLconf line might look like this:: - ('^client/(\d+)/$', 'app_views.client') + ('^client/(\d+)/$', 'app_name.app_views.client') If this app's URLconf is included into the project's URLconf under a path such as this:: @@ -1177,7 +1177,7 @@ ...then, in a template, you can create a link to this view like this:: - {% url app_views.client client.id %} + {% url app_name.app_views.client client.id %} The template tag will output the string ``/clients/client/123/``.