7 lines
171 B
Python
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'),
|
|
] |