Let /tags pull from cached easybake export.
This commit is contained in:
parent
f3bceb4688
commit
ff312d1e16
1 changed files with 6 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue