I have split up views.py into two files, organized thus:
views/
__init__.py
public.py
private.py
In one view (in public) I render a template which has the following:
<a href='{% url app.views.private.login_view %}'>Login</a>
I get the following error when loading the url:
TemplateSyntaxError at /
Caught
ViewDoesNotExistwhile rendering: Could not importapp.views.private.app.views. Error was: No module namedapp.views
What am I doing wrong?

{% url %}it works fine. Django 1.3. – Tom Medley Aug 9 '12 at 15:05