Skip to content

Commit 2f44e9a

Browse files
committed
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
1 parent 135b961 commit 2f44e9a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/templates/person/profile.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h4>Duplicate person records found. This is an error. Showing all:</h4>
1919
<div class="col-md-12">
2020
{% if not forloop.first %}<hr>{% endif %}
2121

22-
<h1>{{ person.name }}</h1>
22+
<h1>{{ person.name }} {% if person.ascii != person.name %}<br><small>({{person.ascii}})</small>{% endif %}</h1>
2323

2424
<div class="bio-text">
2525
{% if person.photo %}

0 commit comments

Comments
 (0)