diff --git a/frontends/etiquette_flask/templates/tag_object.html b/frontends/etiquette_flask/templates/tag_object.html index d6e382d..4caa770 100644 --- a/frontends/etiquette_flask/templates/tag_object.html +++ b/frontends/etiquette_flask/templates/tag_object.html @@ -8,6 +8,9 @@ link: None = no link, just a 'search' = link to /search?tag_musts=tagname + 'search_musts' = link to /search?tag_musts=tagname + 'search_mays' = link to /search?tag_mays=tagname + 'search_forbids' = link to /search?tag_forbids=tagname 'info' = link to /tags/tagname with_alt_description: True: Include the description in the alt text @@ -23,6 +26,9 @@ {% set href = { "search": "/search?tag_musts=" + tag.name, + "search_musts": "/search?tag_musts=" + tag.name, + "search_mays": "/search?tag_mays=" + tag.name, + "search_forbids": "/search?tag_forbids=" + tag.name, "info": "/tag/" + tag.name, None: None, }.get(link, link)