urls.py 456 B

12345678910111213141516
  1. from django.conf.urls import url
  2. from .views import *
  3. urlpatterns = [
  4. # Tenant groups
  5. url(r'^tenant-groups/$', TenantGroupListView.as_view(), name='tenantgroup_list'),
  6. url(r'^tenant-groups/(?P<pk>\d+)/$', TenantGroupDetailView.as_view(), name='tenantgroup_detail'),
  7. # Tenants
  8. url(r'^tenants/$', TenantListView.as_view(), name='tenant_list'),
  9. url(r'^tenants/(?P<pk>\d+)/$', TenantDetailView.as_view(), name='tenant_detail'),
  10. ]