- Added PUT, PATCH and DELETE to modify data in the database. - refactored modules - completed docstrings - data is now served via api/ and web pages via /
11 lines
197 B
Python
11 lines
197 B
Python
"""
|
|
Redirecting HTTP requests destined for the app pt_map to the correct views
|
|
"""
|
|
|
|
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("", views.index, name="index"),
|
|
]
|