Changes between Version 1 and Version 3 of Ticket #27411


Ignore:
Timestamp:
Oct 31, 2016, 6:25:01 PM (8 years ago)
Author:
Tim Graham
Comment:

I don't think there's enough details here to determine what the issue is. In a case like this, it really helps to provide a complete sample project.

Please try our support channels first and reopen with details if it turns out to be a bug in Django. The minimal example to reproduce should ideally not include third-party apps such as django-rest-framework.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27411

    • Property Component UncategorizedTesting framework
    • Property Resolutionneedsinfo
    • Property Status newclosed
  • Ticket #27411 – Description

    v1 v3  
    4343from . import views
    4444urlpatterns = [
    45     url(r'^register/$', views.RegistrationView.as_view(), name='registration'),
     45    url(r'^register/$', views.Registratiowith details if it turns out to be a bug in Django. The minimal example to reproduce should ideally not include third-party apps such as django-rest-framework.nView.as_view(), name='registration'),
    4646    url(r'^users/$', views.AdminCreateUserView.as_view(), name='users'),
    4747    url(r'^groups/$', views.GroupsCreateView.as_view(), name='groups'),
Back to Top