1
0
mirror of https://github.com/django/django.git synced 2025-04-06 14:36:41 +00:00

magic-removal: Moved django.parts.auth.formfields to django.contrib.auth.forms

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2493 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Joseph Kocherhans 2006-03-07 01:47:43 +00:00
parent f5dd6b9a45
commit bc851653b7
3 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ from django.template import RequestContext
from django.contrib.auth.models import SESSION_KEY
from django.contrib.comments.models import Comment, FreeComment, PHOTOS_REQUIRED, PHOTOS_OPTIONAL, RATINGS_REQUIRED, RATINGS_OPTIONAL, IS_PUBLIC
from django.contrib.contenttypes.models import ContentType
from django.parts.auth.formfields import AuthenticationForm
from django.contrib.auth.forms import AuthenticationForm
from django.http import HttpResponseRedirect
from django.utils.text import normalize_newlines
from django.conf import settings

View File

@ -1,4 +1,4 @@
from django.parts.auth.formfields import AuthenticationForm
from django.contrib.auth.forms import AuthenticationForm
from django import forms
from django.shortcuts import render_to_response
from django.template import RequestContext