mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
9 lines
No EOL
364 B
Python
9 lines
No EOL
364 B
Python
from django.template import RequestContext
|
|
from django.shortcuts import render_to_response
|
|
from apps.statistics.models import MStatistics
|
|
|
|
def dashboard_graphs(request):
|
|
statistics = MStatistics.all()
|
|
return render_to_response('statistics/render_statistics_graphs.xhtml', {
|
|
'statistics': statistics,
|
|
}, context_instance=RequestContext(request)) |