Changes between Initial Version and Version 1 of Ticket #27411
- Timestamp:
- Oct 31, 2016, 5:50:56 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27411 – Description
initial v1 37 37 }}} 38 38 39 accounts urls.py 40 41 {{{ 42 from django.conf.urls import url 43 from . import views 44 urlpatterns = [ 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 }}} 39 51 here is my example test 40 52