{% extends "base.html" %} {% block title %}Pitch Folders — Pitchkit{% endblock %} {% block content %} {% if folders %}
{% for folder in folders %}
{{ folder.name }}
{{ folder.count }} song{% if folder.count != 1 %}s{% endif %}
{% if folder.files %}
{% for f in folder.files[:4] %}
{{ f }}
{% endfor %} {% if folder.files|length > 4 %}
+{{ folder.files|length - 4 }} more
{% endif %}
{% endif %}
{% endfor %}
{% else %}

No pitch folders yet.

Use Match Brief to find songs and save them as a pitch folder.

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