I have a fully functioning Django project (not in a virtualenv) which has url patterns like
url(r'^$', 'myapp.views.Dashboard', name="dashboard"),
Which are used in templates like
{% url 'dashboard' %}
I am moving it into a virtual environment, however when I activate the venv using source venv/bin/activate, all my URL tags give
NoReverseMatch at /
Reverse for ''dashboard'' with arguments '()' and keyword arguments '{}' not found.
If I remove the single quote marks it removes this error e.g. {% url dashboard %} is fine. However without these quotes urls like project-create fail when virtualenv is deactivated.
Any ideas what I should be looking at? Should be removing all the quotes and renaming my composite urls (e.g. project-create ==> ProjectCreate)?
Thanks!