I have a problem getting password_Reset_confirm bit working.
url:
(r\'^password_reset/$\', \'django.contrib.auth.views.password_reset\'),
(r\'^passwo
When using the url template tag, you need to specify the view and not the url itself. Since you are using 'django.contrib.auth.views.password_reset_confirm' in your URLConf you should use it like this:
{% url 'django.contrib.auth.views.password_reset_confirm' ... %}
More on the url template tag on Django's Built-in template tags and filters documentation.