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.

9 lines
298 B

10 years ago
10 years ago
  1. from django.conf.urls import include, url
  2. from django.contrib import admin
  3. urlpatterns = [
  4. url(r'^admin/', include(admin.site.urls)),
  5. url(r'^accounts/', include('hc.accounts.urls')),
  6. url(r'^', include('hc.checks.urls')),
  7. url(r'^', include('hc.front.urls')),
  8. ]