beta v.1.1

This commit is contained in:
2025-10-12 10:03:31 -03:00
parent c476b0171f
commit 4c05c3b6af
39 changed files with 410 additions and 11 deletions

View File

@@ -15,8 +15,9 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('Base.urls')),
]