You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
384 B

10 years ago
10 years ago
10 years ago
10 years ago
  1. from django.contrib import admin
  2. from django.urls import include, path
  3. from hc.accounts.views import login as hc_login
  4. urlpatterns = [
  5. path('admin/login/', hc_login),
  6. path('admin/', admin.site.urls),
  7. path('accounts/', include('hc.accounts.urls')),
  8. path('', include('hc.api.urls')),
  9. path('', include('hc.front.urls')),
  10. path('', include('hc.payments.urls'))
  11. ]