{% 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 %} {% endfor %}
Sr No. Student Name  Last access on  Started on  Current Time  Video Duration  Percentage watched 
{{ forloop.counter0|add:objects.start_index }} {{track.user.get_full_name}} {{track.last_access_time}} {{track.creation_time}} {{track.current_time}} {{track.video_duration}}
{% endwith %}
{% include "yaksh/paginator.html" %}
{% endblock %}