b844c4f92f
- Add GET /simple/column-values/ API returning distinct values for any column (top 50 values with counts, from the uploaded DataFrame via polars) - Update frontend onFilterColChange to fetch real data instead of hardcoded hints - Wire datalist ID per filter row for <input list=''> binding Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
594 B
Python
15 lines
594 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'simple_analysis'
|
|
urlpatterns = [
|
|
path('', views.index, name='index'),
|
|
path('upload/', views.upload_csv, name='upload'),
|
|
path('filter/', views.filter_data, name='filter'),
|
|
path('filter/advanced/', views.advanced_filter, name='advanced_filter'),
|
|
path('column-values/', views.column_values, name='column_values'),
|
|
path('cluster/', views.run_clustering, name='cluster'),
|
|
path('cluster/<int:label>/', views.cluster_detail, name='cluster_detail'),
|
|
path('edges/', views.edge_relationships, name='edges'),
|
|
]
|