File: urls.py

package info (click to toggle)
djangorestframework-gis 1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 488 kB
  • sloc: python: 4,093; sh: 14; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 464 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
from django.contrib import admin
from django.contrib.staticfiles import views
from django.urls import include, path

urlpatterns = [
    # Uncomment the next line to enable the admin:
    path('admin/', admin.site.urls),
    # Uncomment the admin/doc line below to enable admin documentation:
    # url('admin/doc/', include('django.contrib.admindocs.urls')),
    path('', include('django_restframework_gis_tests.urls')),
    path('static/<path>', views.serve),
]