{% extends 'base.html.twig' %} {% block title %}Dashboard{% endblock %} {% block body %}

Your dashboard

{% for msg in app.flashes('success') %}
{{ msg }}
{% endfor %}
Review Count
{{ reviewCount }}
Album Count
{{ albumCount }}
User Type
{{ userType }}

Profile

Your reviews

{% for r in userReviews %}
{{ r.title }} (Rating {{ r.rating }}/10)
{{ r.album.name }} • {{ r.createdAt|date('Y-m-d H:i') }}
{% else %}
You haven't written any reviews yet.
{% endfor %}

Your albums

{% for a in userAlbums %}
{{ a.artists|join(', ') }}{% if a.releaseDate %} • {{ a.releaseDate }}{% endif %}
{% else %}
You haven't created any albums yet.
{% endfor %}
{% endblock %}