Thanks to all for answers, i'll try all solutions and i let you know.Thanks you again
Francesco ----Messaggio originale---- Da: scoobygalle...@gmail.com Data: 16/05/2012 15.34 A: <django-users@googlegroups.com> Cc: "francescobocca...@libero.it"<francescobocca...@libero.it> Ogg: Re: Django-registration tutorial + code Hi! You can go this way: install the right version of django-registrationthis command will do the trick:pip install https://bitbucket.org/ubernostrum/django-registration/downloads/django-registration-0.8-alpha-1.tar.gz Add "registration" to installed apps, in your settings.py file:Something like this:INSTALLED_APPS = ( .... 'registration', ....)Add the urls in your urls.py file.something like this:urlpatterns = patterns('', .... # django-registration url(r'^accounts/', include('registration.backends.default.urls')), ....)Add the templates.I created the template set and uploaded it for sharing here:https://github.com/matiasherranz/scoobygalletas/tree/master/django-registration-templates That's it! Let me know if you get stuck with something. M.- -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/qNiVJV-uWV4J. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.