N
Size: a a a
N
DT
urlpatterns = [
path('', PostList.as_view(), name='post_list_url'),
path('post/create/', PostCreate.as_view(), name='post_create_url'),
path('post/delete/<str:slug>/', PostDelete.as_view(), name='post_delete_url'),
path('post/update/<str:slug>/', PostUpdate.as_view(), name='post_update_url'),
path('post/<str:slug>/', PostDetail.as_view(), name='post_detail_url'),
]
AK
N
N
DT
p
DT
N
N
N
DT
N
DT
DT
DT
K
add
добавить другой обьект и снова сделать save?DT
N
p
RuntimeError: Model class django.contrib.contenttypes.models.ContentType doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.