{% extends 'base.html' %} {% block title %}Import from {{ service_name }}{% endblock %} {% block content %}

Import {{ item_type }} from {{ service_name }} {% if service_name == 'Spotify' %}{% elif service_name == 'Deezer' %}{% endif %}

How to find the {{ service_name }} {{ item_type|lower }} ID

  1. 1. Go to the {{ service_name }} website and navigate to your desired {{ item_type|lower }}
  2. 2. Look at the URL in your browser's address bar
  3. 3. Find the ID in the URL format shown below:
{{ url_example_prefix }}{{ url_example_id }}
Back to Search

Importing from {{ service_name }} allows you to add songs directly to your music round collection.

{% if service_name == 'Spotify' %} Spotify Integration {% elif service_name == 'Deezer' %} Deezer Integration {% endif %}
{% endblock %}