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
428 B

10 years ago
10 years ago
10 years ago
10 years ago
  1. from django.conf.urls import include, url
  2. from django.contrib import admin
  3. from hc.accounts.views import login as hc_login
  4. urlpatterns = [
  5. url(r'^admin/login/', hc_login, {"show_password": True}),
  6. url(r'^admin/', include(admin.site.urls)),
  7. url(r'^accounts/', include('hc.accounts.urls')),
  8. url(r'^', include('hc.api.urls')),
  9. url(r'^', include('hc.front.urls')),
  10. url(r'^', include('hc.payments.urls'))
  11. ]