From d5bb2d1c33bd143340807da15331bc163000cf2e Mon Sep 17 00:00:00 2001 From: Mary Strodl Date: Sun, 12 Mar 2023 11:21:41 -0400 Subject: [PATCH 1/2] I'd like to be able to delete my games, thanks :( --- src/templates/header.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/templates/header.html b/src/templates/header.html index 1b77ec5..cdb239d 100644 --- a/src/templates/header.html +++ b/src/templates/header.html @@ -1,5 +1,4 @@ {% macro gamecard(game) %} -{% if game.author != "mstrodl" %}
@@ -12,7 +11,6 @@

{{ game.author }}

{{ game.description }}
-{% endif %} {% endmacro %} {% block header %} From fd9bebc676cb3ddcd9621bd7e9e0420d79492d39 Mon Sep 17 00:00:00 2001 From: Wilson McDade Date: Sun, 12 Mar 2023 13:22:02 -0400 Subject: [PATCH 2/2] Certain game can no longer appear on the gamelist, but should appear on upload page. --- src/templates/catalog.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/templates/catalog.html b/src/templates/catalog.html index 4c5197d..1c03354 100644 --- a/src/templates/catalog.html +++ b/src/templates/catalog.html @@ -2,8 +2,9 @@ block content %}
{% for i in range(0,gamelist|length) %} + {% if gamelist[i].id != "31cb96a8-b061-4381-a433-dd78550d4b3c" %} {{ gamecard(gamelist[i]) }} - + {% endif %} {% endfor %}
{% endblock %}