{% for folder in root.folders %} {% for album in folder.folders %}

Album Info:

Title: {{album.name}}
Artist: {{album.artists|join(', ')}}

File Info:

{% if album.bitrate %} Bitrate : {{album.bitrate}} KB/s
{% endif %} Codec : {{album.extensions|join(', ')}}
Ripper : Unknown

Track List:

{% for file in album.files['music'] %} {{loop.index}}. {{file.title}}
{% endfor %}

{% if album.folders %}

Scans List:

{% for file in album.folders[0].files['scans'] %} {{loop.index}}. {{file}}
{% endfor %}

{% elif album.files['scans'] %}

Scans List:

{% for file in album.files['scans'] %} {{loop.index}}. {{file}}
{% endfor %}

{% endif %}
{% endfor %} {% endfor %}

Uploader's Comment

Change Log

Links