-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: show item count and top artists per playlist
- Loading branch information
1 parent
0b3ab19
commit c037ea5
Showing
7 changed files
with
205 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>{{title}}</title> | ||
<link rel="stylesheet" type="text/css" href= "{{ url_for('static',filename='style.css') }}"> | ||
</head> | ||
<body> | ||
<h1>{{title}}</h1> | ||
|
||
<p> | ||
<a href="javascript:history.back()">🢘 back</a> | ||
</p> | ||
|
||
<ul> | ||
<li> | ||
<a href="../">..</a> | ||
</li> | ||
{% for dir in directories %} | ||
<li> | ||
<a href="{{ quote(dir) }}/">📁 {{ dir }}</a> | ||
</li> | ||
{% endfor %} | ||
{% for file in files %} | ||
<li> | ||
<a href="{{ quote(file.path) }}">🎵 {{ file.name }} <span> 🕑{{ humanize_duration(file.duration) }} 𝍸{{ file.count }} • {{ file.info }}</span></a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</body> | ||
</html> |