I'm still new to Django and have a few questions on how using built in views work. I noticed that djang comes with a built in password change view at django.contrib.auth.views.password_change. This view shows the admin site in the background of the template, while I want to provide my own css/template but keep the form and functionality of that view. How would I do this? Can you pass something into the urls.py
r'password_change/$', 'django.contrib.auth.views.password_change')
like a custom template? I am unsure of the proper way to do this.