|
@ -1,3 +1,4 @@ |
|
|
|
|
|
from django.conf import settings |
|
|
from django.conf.urls import include, url |
|
|
from django.conf.urls import include, url |
|
|
from django.contrib import admin |
|
|
from django.contrib import admin |
|
|
|
|
|
|
|
@ -6,5 +7,8 @@ urlpatterns = [ |
|
|
url(r'^accounts/', include('hc.accounts.urls')), |
|
|
url(r'^accounts/', include('hc.accounts.urls')), |
|
|
url(r'^', include('hc.api.urls')), |
|
|
url(r'^', include('hc.api.urls')), |
|
|
url(r'^', include('hc.front.urls')), |
|
|
url(r'^', include('hc.front.urls')), |
|
|
url(r'^', include('hc.payments.urls')), |
|
|
|
|
|
|
|
|
|
|
|
] |
|
|
] |
|
|
|
|
|
|
|
|
|
|
|
if settings.USE_PAYMENTS: |
|
|
|
|
|
urlpatterns.append(url(r'^', include('hc.payments.urls'))) |