{% extends "manage.html" %} {% load static %} {% block title %} Lesson Views {% endblock %} {% block script %} {% endblock %} {% block content %}
{% with objects.object_list as trackings %}

Statistics for {% with trackings|first as entry %} {{entry.lesson}} {% endwith %}

 Back

{% include "yaksh/paginator.html" %}

{{total}} student(s) viewed this lesson

{% for track in trackings %} {% with track.get_last_access_time_and_vists as time_and_visits %} {% endwith %} {% endfor %}
Sr No. Student Name  Last access on  Started on  Current Duration  Video Duration  Percentage watched  Total visits 
{{ forloop.counter0|add:objects.start_index }} {{track.user.get_full_name}}{{time_and_visits.0}} {{track.creation_time}} {{track.current_time}} {{track.video_duration}} {{time_and_visits.1}}
{% endwith %}
{% include "yaksh/paginator.html" %}
{% endblock %}