feat: article creation

This commit is contained in:
root
2025-10-08 21:30:45 +03:00
parent b11161bce3
commit 2c4f16ce60
10 changed files with 108 additions and 3 deletions

View File

@@ -22,4 +22,5 @@ urlpatterns = [
path('admin/', admin.site.urls),
path('', views.archive),
re_path(r'^article/(?P<article_id>\d+)$', views.get_article, name='get_article'),
path('article/new/', views.create_post),
]