@extends($layout) @section('header_scripts') @stop @section('content')

{{ $title.' '.getPhrase('of').' '.$user->name }}

{{ getPhrase('title')}} {{ getPhrase('correct')}} {{ getPhrase('wrong')}} {{ getPhrase('not_answered')}} {{ getPhrase('total')}}
@if(isset($chart_data))
@for($i=0; $i
@endfor
@endif
{{ getPhrase('title')}} {{ getPhrase('spent_on_correct')}} {{ getPhrase('spent_on_wrong')}} {{ getPhrase('total_time')}} {{ getPhrase('spent_time')}}
@if(isset($time_data))

Time is shown in seconds

@for($i=0; $i
@endfor
@endif
@endsection @section('footer_scripts') @if(isset($chart_data)) @include('common.chart', array('chart_data'=>$chart_data,'ids' => $ids)); @endif @if(isset($time_data)) @include('common.chart', array('chart_data'=>$time_data,'ids' => $timeids)); @endif @if(isset($overall_data)) @include('common.chart', array('chart_data'=>$overall_data,'ids' => $overall_ids)); @endif @stop