8 lines
282 B
Python
8 lines
282 B
Python
|
from django.urls import path
|
||
|
from .views import homepage,guarda_streaming,CreateTitolo
|
||
|
|
||
|
urlpatterns = [
|
||
|
path("",homepage,name="Homepage"),
|
||
|
path("guarda_streaming/<slug_id>",guarda_streaming,name="guarda_streaming"),
|
||
|
path("crea_titolo/",CreateTitolo,name="crea_titolo")
|
||
|
]
|