7 lines
215 B
Python
7 lines
215 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('all', views.AllBlogView.as_view(), name='product-chat-view'),
|
|
path('<int:slug>', views.BlogView.as_view(), name='product-chat-view'),
|
|
] |