From 137fc7c56410fc727dc0bc753ce3d3ac26359056 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Toma=C5=9Bko?= Date: Sun, 29 Sep 2024 03:49:43 +0200 Subject: [PATCH] Move tag down to proper place... --- endsong_ui/templates/artist.html | 190 +++++++++++++++---------------- 1 file changed, 95 insertions(+), 95 deletions(-) diff --git a/endsong_ui/templates/artist.html b/endsong_ui/templates/artist.html index 6bb8bd6..d6a4b1f 100644 --- a/endsong_ui/templates/artist.html +++ b/endsong_ui/templates/artist.html @@ -9,99 +9,99 @@ {% include "tailwind_style.css" %} + +
+

Summary of {{ name }}

+
+
+
+
+

General info

+
    +
  • Total playcount: {{ plays }}
  • +
  • + Time spent listening: + +
  • +
  • + First listen: + +
  • +
  • + Last listen: + +
  • +
  • % of total plays: {{ percentage_of_plays }}%
  • +
+
+
+
+
+
+

Top {{ top }} songs

+ summed across albums +
+
    + {% for song in songs -%} +
  1. {{ song.0 }} | {{ song.1 }} plays
  2. + {% endfor %} +
+
+
+

Top {{ top }} albums

+
    + {% for album in albums -%} +
  1. {{ album.0 }} | {{ album.1 }} plays
  2. + {% endfor %} +
+
+
+
+
+

First listens

+
    + {% for entry in first_listens -%} +
  1. + {{ entry.track }} ({{ entry.album }})
    on {{ + entry.timestamp|pretty_date }} for {{ + entry.time_played.num_seconds() }}s +
  2. + {% endfor %} +
+
+
+

Most recent listens

+
    + {% for entry in last_listens -%} +
  1. + {{ entry.track }} ({{ entry.album }})
    on {{ + entry.timestamp|pretty_date }} for {{ + entry.time_played.num_seconds() }}s +
  2. + {% endfor %} +
+
+
+
+ + - -
-

Summary of {{ name }}

-
-
-
-
-

General info

-
    -
  • Total playcount: {{ plays }}
  • -
  • - Time spent listening: - -
  • -
  • - First listen: - -
  • -
  • - Last listen: - -
  • -
  • % of total plays: {{ percentage_of_plays }}%
  • -
-
-
-
-
-
-

Top {{ top }} songs

- summed across albums -
-
    - {% for song in songs -%} -
  1. {{ song.0 }} | {{ song.1 }} plays
  2. - {% endfor %} -
-
-
-

Top {{ top }} albums

-
    - {% for album in albums -%} -
  1. {{ album.0 }} | {{ album.1 }} plays
  2. - {% endfor %} -
-
-
-
-
-

First listens

-
    - {% for entry in first_listens -%} -
  1. - {{ entry.track }} ({{ entry.album }})
    on {{ - entry.timestamp|pretty_date }} for {{ - entry.time_played.num_seconds() }}s -
  2. - {% endfor %} -
-
-
-

Most recent listens

-
    - {% for entry in last_listens -%} -
  1. - {{ entry.track }} ({{ entry.album }})
    on {{ - entry.timestamp|pretty_date }} for {{ - entry.time_played.num_seconds() }}s -
  2. - {% endfor %} -
-
-
-
- -