Reports missing parameters in the template file if the url() function has parameters in its URL path.
url()
Example:
In the url.py file
url.py
url(r'^(?P<question_id>[0-9]+)/', views.detail, name='detail')
In the template file
{% url 'polls:detail' %}