NewsBlur-viq/apps/statistics/urls.py

9 lines
292 B
Python
Raw Normal View History

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'),
2018-04-17 19:13:44 -07:00
url(r'^revenue', views.revenue, name='revenue'),
]