{% if new_playlists %}

Successfully imported the following {{ num_playlists_initialized_in_db }} playlists into your collection:

{% for playlist in new_playlists %}
{% endfor %}

{% endif %} {% if num_playlists_already_in_db != 0 %} {% if num_playlists_already_in_db > 1 %}

These {{ num_playlists_already_in_db }} were already in your collection :)

{% else %}

This one playlist was already in your collection :)

{% endif %}
{% for playlist in old_playlists %}
{% endfor %}

{% endif %} {% if num_playlists_not_found != 0 %} {% if num_playlists_not_found > 1 %}

Could not find the following {{ num_playlists_not_found }} playlists links :(

{% else %}

Could not find the following playlist link :(

{% endif %}
{% for playlist in not_found_playlists %}
{{ playlist }}
{% endfor %}
{% endif %}