Programming

dashboard_urls

from django.contrib import admin
from django.urls import path, include
from django.conf import settings
from django.conf.urls.static import static

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', include('general.urls')),
    path('members/', include('people.urls')),
    path('services/', include('service.urls')),
    path('monthly/', include('monthlyreport.urls')),
    path('autotask/', include('autotask.urls')),
    path('laws/', include('laws.urls')),
    path('funtime/', include('funtime.urls')),
    path('balans/', include('balans.urls')),
    path('messanger/', include('messanger.urls')),
    path('overduedays/', include('overduedays.urls')),
    path('vintage/', include('vintage.urls')),
    path('saldovka/', include('saldovka.urls')),
    path('balance-comparison/', include('balanselfcomp.urls')),
    path('location/', include('location.urls')),
    path('collateral/', include('collateral.urls')),
    path('creditline/', include('creditline.urls')),
    path('history/', include('history.urls')),
    path('turnover/', include('turnover.urls')),
    path('differencedays/', include('differencedays.urls')),
    path('collateraldata/', include('collateraldata.urls')),
    path('inspector/', include('inspector.urls')),
    path('clientpassport/', include('clientpassport.urls')),
    path('interestchange/', include('interestchange.urls')),
    path('b2_changes/', include('b2_changes.urls')),
    path('risk/', include('risk.urls')),
    path('loanportfel/', include('loanportfel.urls')),

]

if settings.DEBUG:
    urlpatterns += static(settings.MEDIA_URL, document_root = settings.MEDIA_ROOT)
 
Helpful? Dislike 0 Log in to react