removed testing code

This commit is contained in:
CDaut 2022-06-25 21:05:42 +02:00 committed by CDaut
parent 4436bd2058
commit c9e97da9e9
3 changed files with 42 additions and 42 deletions

View file

@ -1,4 +1,4 @@
from blog.views import viewblog, addpost, order, index, createmocks, edit, addtopic
from blog.views import viewblog, addpost, order, index, edit, addtopic#, createmocks
from django.urls import path
urlpatterns = [
@ -7,6 +7,6 @@ urlpatterns = [
path('manage/addtopic', addtopic, name='addtopic'),
path('manage/order', order, name='order'),
path('manage/edit/<int:id>/', edit, name='editpost'),
path('mock/<str:objtype>/<int:n>/', createmocks, name='mock'),
#path('mock/<str:objtype>/<int:n>/', createmocks, name='mock'),
path('read/<str:title>', viewblog, name='readpost'),
]