On the tag ancestors, don't display the current tag name.
I was finding it too confusing.
This commit is contained in:
parent
8a12a24e8e
commit
5ec38a93b1
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ body
|
||||||
{% for ancestor in specific_tag.get_parents() %}
|
{% for ancestor in specific_tag.get_parents() %}
|
||||||
<li>
|
<li>
|
||||||
{{tag_object.tag_object(ancestor, innertext='(?)', link='info')}}
|
{{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)}}
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Reference in a new issue