{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %}
{% if playlists|length == 1 %}

Playlist Created Successfully!

Your playlist {{ playlists[0].name }} has been created with {{ playlists[0].track_count }} tracks.

{% else %}

{{ playlists|length }} Playlists Created Successfully!

All playlists have been created with a total of {{ playlists|sum(attribute='track_count') }} tracks.

{% endif %}
{% if playlists|length > 1 %}
{% for playlist in playlists %}
{{ playlist.name }}

{{ playlist.track_count }} track{% if playlist.track_count != 1 %}s{% endif %} {% if playlist.source %} Source {% endif %}

{% endfor %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}