{% extends 'base.html.twig' %} {% block title %}Hello MainController!{% endblock %} {% block body %}

{{ app.user.username }}'s fap history


{% block fap_statistics_container %}
total: {{ app.user.entries|length }}
{% for entry in app.user.entries %}
{{ entry.dateAt|date('Y-m-d H:i:s') }} (delete)
{% endfor %}
{% endblock %} {% endblock body %}