From 5ec38a93b1cf50a6dfb914cac334aa841762aaa9 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sun, 22 Jul 2018 18:20:43 -0700 Subject: [PATCH] On the tag ancestors, don't display the current tag name. I was finding it too confusing. --- frontends/etiquette_flask/templates/tags.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontends/etiquette_flask/templates/tags.html b/frontends/etiquette_flask/templates/tags.html index e75e538..b3a86b2 100644 --- a/frontends/etiquette_flask/templates/tags.html +++ b/frontends/etiquette_flask/templates/tags.html @@ -123,7 +123,7 @@ body {% for ancestor in specific_tag.get_parents() %}
  • {{tag_object.tag_object(ancestor, innertext='(?)', link='info')}} - {{tag_object.tag_object(ancestor, innertext=ancestor.name + '.' + specific_tag.name, link=none, with_alt_description=True)}} + {{tag_object.tag_object(ancestor, innertext=ancestor.name, link=none, with_alt_description=True)}}
  • {% endfor %}