Add standardized HTMX conventions, interaction patterns, and migration guide for ThrillWiki UX

This commit is contained in:
pacnpal
2025-12-22 16:56:27 -05:00
parent 2e35f8c5d9
commit ae31e889d7
144 changed files with 25792 additions and 4440 deletions

View File

@@ -140,6 +140,15 @@ if settings.DEBUG:
# Only serve static files, not media files since we're using Cloudflare Images
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
# Design system test page (development only)
urlpatterns += [
path(
"design-system-test/",
TemplateView.as_view(template_name="tests/design-system-test.html"),
name="design_system_test",
),
]
# Note: Media files are handled by Cloudflare Images, not Django static serving
# This prevents the catch-all pattern from interfering with API routes