commit | author | age
|
948497
|
1 |
"""djsenzor URL Configuration |
SP |
2 |
|
|
3 |
The `urlpatterns` list routes URLs to views. For more information please see: |
|
4 |
https://docs.djangoproject.com/en/2.1/topics/http/urls/ |
|
5 |
Examples: |
|
6 |
Function views |
|
7 |
1. Add an import: from my_app import views |
|
8 |
2. Add a URL to urlpatterns: path('', views.home, name='home') |
|
9 |
Class-based views |
|
10 |
1. Add an import: from other_app.views import Home |
|
11 |
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') |
|
12 |
Including another URLconf |
|
13 |
1. Import the include() function: from django.urls import include, path |
|
14 |
2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) |
|
15 |
""" |
|
16 |
|
|
17 |
from django.urls import path |
|
18 |
from . import views |
|
19 |
urlpatterns = [ |
fe4f05
|
20 |
path('<int:pk>', views.index, name='index'), |
SP |
21 |
path('api/measurement', views.SensorData.as_view(), name='measurement'), |
|
22 |
path('my-ajax-test/', views.myajaxtestview, name='ajax-test-view'), |
948497
|
23 |
] |