netcop-ai/frontend/urls.py
thecyberlearn 213486946e Add frontend, agents apps and enhance API with authentication
- Add new Django apps: agents and frontend with URL routing
- Configure static files and templates directories in settings
- Add CSRF exemption and authentication to user endpoints
- Switch Stripe currency from USD to AED
- Add user management script and static assets
- Include REST framework token authentication

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-30 23:22:59 +05:30

14 lines
584 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.landing, name='landing'),
path('login/', views.login_view, name='login'),
path('register/', views.register_view, name='register'),
path('dashboard/', views.dashboard, name='dashboard'),
path('wallet/', views.wallet, name='wallet'),
path('workflows/', views.workflows, name='workflows'),
path('agents/', views.agents_marketplace, name='agents'),
path('agents/<slug:slug>/', views.agent_detail, name='agent_detail'),
path('logout/', views.logout_view, name='logout'),
]