{% extends "admin/base_site.html" %} {% block content %}
{% csrf_token %} {{ artist_formset.management_form }} {% for form in artist_formset %} {{ form }} {% endfor %}

Select up to ten artists to {% if is_removal %}remove from{% else %}add to{% endif %} the songs below:

{% for song in songs %} {% endfor %}

Artists will be {% if is_removal %}removed from{% else %}added to{% endif %} the following songs:

{{ song }}
{% endblock %}