12 lines
226 B
Python
12 lines
226 B
Python
|
from django.urls import path
|
||
|
|
||
|
from trombonoscope import views
|
||
|
|
||
|
|
||
|
app_name = "trombonoscope"
|
||
|
urlpatterns = [
|
||
|
|
||
|
path("", views.trombonoscope, name="view"),
|
||
|
path("modif_profil", views.changetrombonoscope, name="change"),
|
||
|
]
|