You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
533 B
15 lines
533 B
"""
|
|
Backwards-compatible URLconf for existing django-registration
|
|
installs; this allows the standard ``include('registration.urls')`` to
|
|
continue working, but that usage is deprecated and will be removed for
|
|
django-registration 1.0. For new installs, use
|
|
``include('registration.backends.default.urls')``.
|
|
|
|
"""
|
|
|
|
import warnings
|
|
|
|
warnings.warn("include('registration.urls') is deprecated; use include('registration.backends.default.urls') instead.",
|
|
DeprecationWarning)
|
|
|
|
from registration.backends.default.urls import *
|
|
|