some more import changes

pull/1/head
Raymond Yee 2013-03-26 11:24:30 -07:00
parent 754e6c9288
commit 6d344ab105
2 changed files with 3 additions and 3 deletions

View File

@ -31,8 +31,8 @@ from django.template import RequestContext, Context
from django.template.loader import render_to_string
from django.core.mail import send_mail
from email_change.forms import EmailChangeForm
from email_change.utils import generate_key
from regluit.email_change.forms import EmailChangeForm
from regluit.email_change.utils import generate_key
@login_required

View File

@ -18,7 +18,7 @@ urlpatterns = patterns('',
{'template_name': 'registration/from_pledge.html'}),
(r'^accounts/edit/$', 'regluit.frontend.views.edit_user'),
(r'^accounts/', include('registration.backends.default.urls')),
url('accounts/', include('email_change.urls')),
url('accounts/', include('regluit.email_change.urls')),
url(r"^accounts/login/welcome/$", direct_to_template,
{'template': 'registration/welcome.html',
'extra_context': {'suppress_search_box': True,}