mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
7 lines
185 B
Python
7 lines
185 B
Python
![]() |
from django.conf.urls.defaults import *
|
||
|
from apps.statistics import views
|
||
|
|
||
|
urlpatterns = patterns('',
|
||
|
url(r'^dashboard_graphs', views.dashboard_graphs, name='statistics-graphs'),
|
||
|
)
|