Skip to content Skip to sidebar Skip to footer

How To Resolve Templatesyntaxerror: Could Not Parse The Remainder Error?

I'm getting a 'TemplateSyntaxError: Could not parse the remainder:' here: https://docs.djangoproject.com/en/1.7/intro/tutorial05/ >>> response = client.get(reverse('polls

Solution 1:

You are using left quote and right quote characters when quoting the view name; where you should be using single or double quotes.

Use either 'polls:details' or "polls:details"

Post a Comment for "How To Resolve Templatesyntaxerror: Could Not Parse The Remainder Error?"