Re: How to set custom template in Class PasswordResetView

2017-06-13 Thread Tim Graham
What does your code look like now? You can subclass the PasswordResetView and set the appropriate attribute for whichever template you want to override. https://docs.djangoproject.com/en/dev/topics/auth/default/#django.contrib.auth.views.PasswordResetView Or you can override the default templat

How to set custom template in Class PasswordResetView

2017-06-13 Thread Rohan Purekar
I have implemented class based password reset view as instructed in django1.11 but the template being used is the default template, I want to use a custom template. Where I am stuck is If I have to use a custom template then I will have to call get and post functions to return the template to b