8 lines
175 B
Python
8 lines
175 B
Python
|
|
from django.urls import path
|
||
|
|
from . import views
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path('chart/', views.chart, name='chart'),
|
||
|
|
path('charts/', views.charts_list, name='charts_list'),
|
||
|
|
]
|