NewsBlur-viq/apps/statistics/urls.py

7 lines
185 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'),
)