Example #1
0
def index(request):
    service = MaternityService()
    entity = service.get('ALL')
    data = [
            (k, [
                 ('ALL', v['total'])
                 ]) for k, v in entity['statistics']
            ]
    context = {
               'entity': entity,
               'chart': BarChart(600, 400, data)
               }
    return render(request, 'maternity/index.html', context)