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