mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
8 lines
150 B
Python
8 lines
150 B
Python
from django.urls import path
|
|
|
|
from portal.views import GetHome
|
|
|
|
urlpatterns = [
|
|
path("<int:page>", GetHome.as_view(), name='index_pagination'),
|
|
]
|