{% extends "base.html" %} {% load static %} {% block title %} {{ title }} {% endblock title %} {% block content %}
{% if dataset_count >= 1 %} {% url 'list_sessions_start_session_from_session' last.id as start_session_url %}
{% include "components/button_start.html" with text=last.purchase title="Start session of last played game" only %}
{% endif %} {% if dataset_count != 0 %} {% for session in dataset %} {% partialdef session-row inline=True %} {% endpartialdef %} {% endfor %}
Name Duration
{{ session.purchase.edition.name }} {{ session.duration_formatted }}
{% else %}
No sessions found.
{% endif %}
{% endblock content %}