From 052c1d1c6077739fff87bbbaf3a9609ee4d5254e Mon Sep 17 00:00:00 2001 From: lza_menace Date: Thu, 13 Jan 2022 20:49:13 -0800 Subject: [PATCH] show approve/deny buttons on card and include title --- suchwowx/templates/includes/meme_card.html | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/suchwowx/templates/includes/meme_card.html b/suchwowx/templates/includes/meme_card.html index 15ce290..bcb208f 100644 --- a/suchwowx/templates/includes/meme_card.html +++ b/suchwowx/templates/includes/meme_card.html @@ -28,15 +28,26 @@ {% endif %}
-

{{ meme.user.handle }}

-

{{ meme.user.public_address | shorten_address }}

+

{{ meme.title }}

+

+ {{ meme.user.handle }} + ({{ meme.user.public_address | shorten_address }}) +

- {{ meme.description }} -
+ {% if not meme.approved %} +
+
+ Approve +
+
+ Deny +
+
+ {% endif %}