Spaces:
Running
Running
File size: 526 Bytes
2e51161 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from django.contrib import admin
from django.urls import path, include
from django.conf.urls.static import static
from django.conf import settings
# import from template view
from django.views.generic import TemplateView
urlpatterns = [
path('admin/', admin.site.urls),
path('api/',include("api.urls")),
path('', TemplateView.as_view(template_name='index.html')),
path("pdf2data/",TemplateView.as_view(template_name="index.html")),
]+ static(settings.STATIC_URL,document_root=settings.STATIC_ROOT)
|