Personal profile pages already show the primary (unicode) name of a person. Added the asciified name in parentheses, if different from the primary name, in the page header.
- Legacy-Id: 12915
This commit is contained in:
parent
135b961b1d
commit
2f44e9a97b
|
@ -19,7 +19,7 @@
|
|||
<div class="col-md-12">
|
||||
{% if not forloop.first %}<hr>{% endif %}
|
||||
|
||||
<h1>{{ person.name }}</h1>
|
||||
<h1>{{ person.name }} {% if person.ascii != person.name %}<br><small>({{person.ascii}})</small>{% endif %}</h1>
|
||||
|
||||
<div class="bio-text">
|
||||
{% if person.photo %}
|
||||
|
|
Loading…
Reference in a new issue