django-registration password reset custom template not loading

Posted by ip. on Stack Overflow See other posts from Stack Overflow or by ip.
Published on 2012-11-27T23:02:37Z Indexed on 2012/11/27 23:03 UTC
Read the original article Hit count: 215

Filed under:
|

I'm using django-registration for registering users, however when I want to use my own template for password reset I get the admin template and not the template I created. My template is in myapp/templates/registration/password_reset_form.html and my template loaders are properly set:

TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader',
    'django.template.loaders.app_directories.Loader',
    )

What could I be missing?

I'm using Django 1.4

© Stack Overflow or respective owner

Related posts about django

Related posts about django-registration