Add author's name on tag pages.

This commit is contained in:
voussoir 2021-10-23 17:20:43 -07:00
parent 7e0c3e2626
commit 08a8095efb
No known key found for this signature in database
GPG key ID: 5F7554F8C26DACCB

View file

@ -118,6 +118,13 @@ h2, h3
>
Delete
</button>
{% set author = specific_tag.get_author() %}
{% if author is not none %}
<p>
Author: <a href="/userid/{{author.id}}">{{author.display_name}}</a>
</p>
{% endif %}
</div> <!-- hierarchy_self -->
{% set parents = specific_tag.get_parents() %}