from django.urls import path from portal.views import GetHome urlpatterns = [ path("", GetHome.as_view(), name='index_pagination'), ]