changeset 264 | 8c2376baee94 |
parent 259 | 3efb40900b87 |
child 265 | 1ce8241a9628 |
263:48d68e75e9cc | 264:8c2376baee94 |
---|---|
19 url(r'localhost:8000', None, name="site"), |
19 url(r'localhost:8000', None, name="site"), |
20 |
20 |
21 url(r'^accounts/register/$', register, |
21 url(r'^accounts/register/$', register, |
22 {'form_class': CustomRegistrationForm}, |
22 {'form_class': CustomRegistrationForm}, |
23 name='registration_register'), |
23 name='registration_register'), |
24 |
|
25 (r'^accounts/', include('registration.urls')), |
|
24 ) |
26 ) |