Changes between Version 3 and Version 4 of Ticket #31108, comment 2


Ignore:
Timestamp:
Dec 21, 2019, 11:48:50 AM (4 years ago)
Author:
Man Python

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31108, comment 2

    v3 v4  
    1010
    1111{{{
    12     url(r'^account/', include('django_registration.backends.activation.urls')),
    13     url(r'^account/register/', RegistrationView.as_view(form_class=RegistrationForm), name='register'),
     12    url(r'^accounts/', include('django_registration.backends.activation.urls')),
     13    url(r'^accounts/register/', RegistrationView.as_view(form_class=RegistrationForm), name='register'),
    1414}}}
    1515
Back to Top