mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
7 lines
250 B
Python
7 lines
250 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'),
|
|
)
|