1from django.urls import path 2 3from . import views 4 5app_name = 'sliders' 6urlpatterns = [ 7 path('', views.sliders, name='sliders'), 8] 9 10