mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
8 lines
292 B
Python
8 lines
292 B
Python
from django.conf.urls import *
|
|
from apps.statistics import views
|
|
|
|
urlpatterns = [
|
|
url(r'^dashboard_graphs', views.dashboard_graphs, name='statistics-graphs'),
|
|
url(r'^feedback_table', views.feedback_table, name='feedback-table'),
|
|
url(r'^revenue', views.revenue, name='revenue'),
|
|
]
|