urls.py
Ricky/djangob/core/urls.py
from django.urls import path
from . import views
urlpatterns = [
path("", views.survey, name="survey"),
path("result/<int:pk>/", views.assessment_result, name="assessment_result"),
path("blog/", views.post_list, name="blog"),
# ✅ 新增:生成 AI 圖片
path(
"generate-ai/<int:assessment_id>/",
views.generate_ai_images,
name="generate_ai_images"
),
]
関連記事
__init__.py
__init__.py — python source code from the Ricky learning materials (Ricky/Cat Project Final/back_web-4/app/__init__.py).
記事を読む →auth.py
auth.py — python source code from the Ricky learning materials (Ricky/Cat Project Final/back_web-4/app/admin/auth.py).
記事を読む →routes.py
routes.py — python source code from the Ricky learning materials (Ricky/Cat Project Final/back_web-4/app/admin/routes.py).
記事を読む →config.py
config.py — python source code from the Ricky learning materials (Ricky/Cat Project Final/back_web-4/app/config.py).
記事を読む →admin_ingest.py
admin_ingest.py — python source code from the Ricky learning materials (Ricky/Cat Project Final/back_web-4/app/routes/admin_ingest.py).
記事を読む →admin_stats.py
admin_stats.py — python source code from the Ricky learning materials (Ricky/Cat Project Final/back_web-4/app/routes/admin_stats.py).
記事を読む →