BoxTitoli_Mysql/titoli/urls.py

8 lines
277 B
Python
Raw Normal View History

2020-05-22 12:05:33 +00:00
from django.urls import path
from .views import homepage,guarda_streaming,CreateTitolo
urlpatterns = [
path("",homepage,name="Homepage"),
path("guarda_streaming/<id>",guarda_streaming,name="guarda_streaming"),
path("crea_titolo/",CreateTitolo,name="crea_titolo")
]