Dosyalar
| Dosya | Ön dinleme | Taşı | İşlem |
|---|---|---|---|
| {{ file.name }} {{ (file.size / 1048576)|round(1) }} MB |
|||
| Bu klasörde ses dosyası yok. | |||
Şarkı Editörü
Favori ve yasaklı şarkıları tüm havuzda veya aktif playlistte yönet
{{ 'Aktif Playlist' if editor_scope == 'active' else 'Tüm Müzikler' }}
{% if editor_scope == 'active' %}{{ active_playlist }}{% endif %}
{{ playlist_editor.total }} şarkı
| Şarkı | İşlem |
|---|---|
| {{ track.name }} {% if track.favorite %}Favori{% endif %} {% if track.banned %}Yasaklı{% endif %} | |
| Müzik havuzunda şarkı bulunamadı. | |
Sayfa {{ playlist_editor.page }} / {{ playlist_editor.total_pages }} · Her sayfada {{ playlist_editor.page_size }} kayıt
‹
{% for page_no in range(1, playlist_editor.total_pages + 1) %}
{% if page_no == 1 or page_no == playlist_editor.total_pages or (page_no >= playlist_editor.page - 2 and page_no <= playlist_editor.page + 2) %}
{{ page_no }}
{% elif page_no == playlist_editor.page - 3 or page_no == playlist_editor.page + 3 %}
…
{% endif %}
{% endfor %}
›