[Fixed]-Django-registration, template

18πŸ‘

Some templates can be found here: http://devdoodles.wordpress.com/2009/02/16/user-authentication-with-django-registration/

$ tree
.
|-- [            981]  base.html
|-- [             89]  index.html
`-- [            544]  registration
    |-- [            287]  activate.html
    |-- [            221]  activation_email.txt
    |-- [             67]  activation_email_subject.txt
    |-- [            459]  login.html
    |-- [            110]  logout.html
    |-- [            116]  password_change_done.html
    |-- [            192]  password_change_form.html
    |-- [            193]  password_reset_complete.html
    |-- [            283]  password_reset_confirm.html
    |-- [            153]  password_reset_done.html
    |-- [            215]  password_reset_email.html
    |-- [            192]  password_reset_form.html
    |-- [            146]  registration_complete.html
    `-- [            192]  registration_form.html
πŸ‘€miku

14πŸ‘

I found the templates here to be a good starting point:

https://github.com/yourcelf/django-registration-defaults

(Note that you need to a base.html for them to include)

πŸ‘€Dave Forgac

2πŸ‘

the djen of django book has some templates for django-registration with some explanations.

πŸ‘€Naveen

1πŸ‘

Make sure you are using the latest version of Django-registration-redux. Current version is 1.4. Also go to this link and download django-registration app manually. After its downloaded just drag drop your templates from templates/registration to your templates/registration. Check again an post the situation after these steps.

Leave a comment