{# TODO: Make File Deleting Modal Dynamic to prevent redundant code #} {% extends 'base.html.twig' %} {% block title %}Dashboard | ventry.host{% endblock %} {% block head %} {% endblock %} {% block body %} {% include 'partials/__header.html.twig' %}

Hello {{ app.user.username }}!

Thank you for using ventry.host as your file hosting service!

{% include 'partials/home/__statistics.html.twig' %}
{% for file in files %}
{{ file.name }}

{{ file.name }}

{{ file.size|formatFilesize }}

{% endfor %}
{% if files is not empty %} {% include 'partials/home/__pagination.html.twig' %} {% endif %}
{% endblock %}