We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In /mezzanine_polls/templates/pages/poll.html line 9:
/mezzanine_polls/templates/pages/poll.html
<ul> <li><a href="{% url home %}">{% trans "Home" %}</a> > </li> <li>{% trans "Poll" %}: {{ page.title }}</li> </ul><br />
url home is invalid in django 1.6, should be url 'home'
url home
url 'home'
The text was updated successfully, but these errors were encountered:
Thanks, its runs!
Sorry, something went wrong.
Broken url match, fix sebasmagri#2
3ca8f6f
No branches or pull requests
In
/mezzanine_polls/templates/pages/poll.html
line 9:url home
is invalid in django 1.6, should beurl 'home'
The text was updated successfully, but these errors were encountered: