mappa-ricezione-radio/rxmap/rxmapp/urls.py

29 lines
1 KiB
Python
Raw Normal View History

2020-03-02 01:49:44 +01:00
"""rxmap URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.2/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path, include
from django.views.generic import TemplateView
from . import views
urlpatterns = [
2020-03-03 18:35:27 +01:00
path("", TemplateView.as_view(template_name="index.html"), name="home"),
path("add", views.add_page, name="add"),
path("api/rapporti/get", views.rapporti_get),
path("api/rapporti/add", views.rapporto_add),
path("api/rapporti/delete", views.rapporto_delete),
2020-03-02 01:49:44 +01:00
]