Files
button/ui/urls.py
2020-05-07 12:39:27 -04:00

7 lines
171 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('button/', views.button, name = 'button'),
path('smooth/', views.smooth, name = 'smooth'),
]