1#!/usr/bin/env python
 2
 3from django.shortcuts import render
 4
 5from chart.reports.report_template import ReportTemplate
 6
 7def index(request):
 8    return render(request,
 9                  'reports/reports.html',
10                  {'reports': list(ReportTemplate.all())})