Changeset 7369 for djangoproject.com/django_website/apps/accounts
- Timestamp:
- 03/27/08 09:23:58 (8 months ago)
- Files:
-
- djangoproject.com (modified) (1 prop)
- djangoproject.com/django_website/apps/accounts/urls.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
djangoproject.com
- Property svn:externals changed from
django -r6063 http://code.djangoproject.com/svn/django/trunk/django/
registration -r87 http://django-registration.googlecode.com/svn/trunk/registration/
comment_utils -r78 http://django-comment-utils.googlecode.com/svn/trunk/comment_utils/
to
django -r6063 http://code.djangoproject.com/svn/django/trunk/django/
registration -r139 http://django-registration.googlecode.com/svn/trunk/registration/
comment_utils -r78 http://django-comment-utils.googlecode.com/svn/trunk/comment_utils/
- Property svn:externals changed from
djangoproject.com/django_website/apps/accounts/urls.py
r6064 r7369 1 1 from django.conf.urls.defaults import * 2 2 from django.views.generic.simple import direct_to_template 3 from django_website.apps.accounts.forms import RegistrationForm3 from registration.forms import RegistrationFormUniqueEmail 4 4 5 5 urlpatterns = patterns('', … … 7 7 r'^register/$', 8 8 "registration.views.register", 9 {'form_class': RegistrationForm },9 {'form_class': RegistrationFormUniqueEmail}, 10 10 name='registration_register', 11 11 ),
