From 53657a9454ac815eb2324c9c89c8cc4215b6ff3a Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Fri, 19 Apr 2024 11:27:27 -0400 Subject: [PATCH] [videogames] Add template for video game list --- .../templates/videogames/videogame_list.html | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 vrobbler/templates/videogames/videogame_list.html diff --git a/vrobbler/templates/videogames/videogame_list.html b/vrobbler/templates/videogames/videogame_list.html new file mode 100644 index 0000000..d3103df --- /dev/null +++ b/vrobbler/templates/videogames/videogame_list.html @@ -0,0 +1,28 @@ +{% extends "base_list.html" %} + +{% block lists %} +
+
+
+ + + + + + + + + + {% for obj in object_list %} + + + + + + {% endfor %} + +
NameScrobblesAll time
{{obj}}{{obj.scrobble_set.count}}
+
+
+
+{% endblock %}