Django

Code

Show
Ignore:
Timestamp:
03/27/08 09:23:58 (8 months ago)
Author:
jacob
Message:

[website] checked in some outstanding template changes.

Files:

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/
  • djangoproject.com/django_website/apps/accounts/urls.py

    r6064 r7369  
    11from django.conf.urls.defaults import * 
    22from django.views.generic.simple import direct_to_template 
    3 from django_website.apps.accounts.forms import RegistrationForm 
     3from registration.forms import RegistrationFormUniqueEmail 
    44 
    55urlpatterns = patterns('', 
     
    77        r'^register/$',  
    88        "registration.views.register",  
    9         {'form_class': RegistrationForm}, 
     9        {'form_class': RegistrationFormUniqueEmail}, 
    1010        name='registration_register', 
    1111    ),