Changes between Initial Version and Version 1 of Ticket #31108, comment 2


Ignore:
Timestamp:
Dec 21, 2019, 10:48:25 AM (5 years ago)
Author:
Man Python

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31108, comment 2

    initial v1  
    88
    991. If the stack with url fifo is in this way:
     10
     11{{{
    1012    url(r'^account/', include('django_registration.backends.activation.urls')),
    1113    url(r'^account/register/', RegistrationView.as_view(form_class=RegistrationForm), name='register'),
     14}}}
     15
    1216
    13172. If in this way is ok, but fork not recognize account if not accounts
     18
     19{{{
    1420    url(r'^account/register/', RegistrationView.as_view(form_class=RegistrationForm), name='register'),
    1521    url(r'^account/', include('django_registration.backends.activation.urls')),
     22}}}
     23
    1624
    1725There is no description in details how to use, so users don't know whats is wrong here and the error doing missunderstanding coz is no any case related with the title error and Manager, just url.
Back to Top