9 lines
176 B
Python
9 lines
176 B
Python
|
from .views import GPSLogView
|
||
|
|
||
|
from django.urls import path
|
||
|
|
||
|
app_name = "gpslog"
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('<uuid:track>/<uuid:token>/', GPSLogView.as_view(), name="gpslog"),
|
||
|
]
|