NewsBlur/apps/statistics/urls.py

8 lines
259 B
Python
Raw Normal View History

from django.conf.urls.defaults 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'),
)