11 lines
236 B
Python
11 lines
236 B
Python
"""Advertisement common urlpaths."""
|
|
from django.urls import path
|
|
|
|
from advertisement.views import web as views
|
|
|
|
app_name = 'advertisements'
|
|
|
|
urlpatterns = [
|
|
path('<str:page>/', views.AdvertisementListView.as_view(), name='list')
|
|
]
|