{% extends "base.html" %} {% load i18n %} {% load display_functions %} {% block content %}

{% trans 'page_title_points' %}

{% if page.object_list.count > 0 %} {% include "oppia/includes/page_navigator.html" %}
{% trans 'table_header_points_date' %}
{% trans 'table_header_points' %}
{% trans 'table_header_points_description' %}
{% for p in page.object_list %}
{{ p.date|date:"d M Y H:i" }}
{{ p.points }}
{{ p.description }}
{% endfor %} {% include "oppia/includes/page_navigator.html" %} {% else %}

You don't have any points yet

{% endif %} {% endblock %}