NewsBlur/apps/statistics/urls.py
2018-04-17 19:13:44 -07:00

8 lines
303 B
Python

from django.conf.urls import *
from apps.statistics import views
urlpatterns = patterns('',
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'),
)