Reports missing parameters in the template file if the url() function has parameters in its URL path.

Example:

In the url.py file


url(r'^(?P<question_id>[0-9]+)/', views.detail, name='detail')

In the template file


{% url 'polls:detail' %}