{% include 'sidebar.html' %}
Number of Tracks from Each Genre per Customer
Select Customer:
All Customers
{% for customer in customers %}
{{ customer.first_name }} {{ customer.last_name }}
{% endfor %}
Filter
{% if customer %}
{{ customer }}
{% endif %} {% if not data %}
No data available for the selected customer.
{% else %}
Genre
Number of tracks
{% for row in data %}
{{ row.genre }}
Number of Tracks: {{ row.track_count }}
{% empty %}
No data available for this customer.
{% endfor %}
{% endif %}