Let /tags pull from cached easybake export.

This commit is contained in:
voussoir 2020-09-14 05:49:49 -07:00
parent f3bceb4688
commit ff312d1e16

View file

@ -93,7 +93,12 @@ def get_tags_html(specific_tag_name=None):
tags = [specific_tag]
tag_count = sum(1 for child in specific_tag.walk_children())
tags = etiquette.tag_export.easybake(tags, include_synonyms=False, with_objects=True)
tags = list(common.P.get_cached_tag_export(
'easybake',
tags=tags,
include_synonyms=False,
with_objects=True,
))
response = common.render_template(
request,