Changes between Initial Version and Version 1 of Ticket #27411


Ignore:
Timestamp:
Oct 31, 2016, 5:50:56 PM (8 years ago)
Author:
atkawa7
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27411 – Description

    initial v1  
    3737}}}
    3838
     39accounts urls.py
     40
     41{{{
     42from django.conf.urls import url
     43from . import views
     44urlpatterns = [
     45    url(r'^register/$', views.RegistrationView.as_view(), name='registration'),
     46    url(r'^users/$', views.AdminCreateUserView.as_view(), name='users'),
     47    url(r'^groups/$', views.GroupsCreateView.as_view(), name='groups'),
     48]
     49
     50}}}
    3951here is my example test
    4052
Back to Top