mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 23:12:57 +00:00
- Add CyberSec Career Navigator with JotForm white-label integration - Implement direct access agent system alongside webhook agents - Add digital branding services page with SOSTAC+RACE methodology - Create dual integration patterns: webhook vs direct access flows - Clean up unused form API endpoints for streamlined architecture - Add career navigator management command and templates - Update marketplace with conditional logic for different agent types - Fix UI consistency issues (remove category labels, fix animations) - Update documentation to reflect new dual architecture 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
416 B
Python
12 lines
416 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'core'
|
|
|
|
urlpatterns = [
|
|
path('', views.homepage_view, name='homepage'),
|
|
path('digital-branding/', views.digital_branding_view, name='digital_branding'),
|
|
path('pricing/', views.pricing_view, name='pricing'),
|
|
path('contact/', views.contact_form_view, name='contact_form'),
|
|
path('health/', views.health_check_view, name='health_check'),
|
|
] |