Initial commit

This commit is contained in:
ai_ml_operations
2026-09-06 04:27:41 -07:00
commit 8a97e3fbe2
302 changed files with 34038 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from django.urls import path
from blog import views
app_name = "blog_portal"
urlpatterns = [
path("", views.portal_list, name="portal_list"),
path("new/", views.portal_edit, name="portal_new"),
path("<uuid:pk>/", views.portal_edit, name="portal_edit"),
path("<uuid:pk>/delete/", views.portal_delete, name="portal_delete"),
]