mappa-ricezione-radio/rxmap/rxmapp/urls.py
2020-09-29 16:49:25 +02:00

32 рядки
1,3 КіБ
Python

"""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.contrib.staticfiles.urls import staticfiles_urlpatterns
from django.urls import include, path
from django.views.generic import TemplateView
from . import views
urlpatterns = [
path("", views.ViewMap.as_view(), name="home"),
path("add", views.add_page, name="add"),
path("api/rapporti/get", views.rapporti_get),
# path("api/rapporti/get", views.RapportiGet.as_view()),
path("api/rapporti/<int:pk>/edit", views.rapporto_edit_redirect),
path("api/rapporti/add", views.rapporto_add),
# path("api/rapporti/delete", views.rapporto_delete),
]
urlpatterns += staticfiles_urlpatterns()