diff --git a/templates/bar.html b/templates/bar.html index a9991451773f16b69d0ca1649800b6612d4dfd9a..e0ab08c2ed869f01b4e0d4a43cf5e63cf9c13094 100644 --- a/templates/bar.html +++ b/templates/bar.html @@ -52,7 +52,7 @@ {% endif %} </div> <div class="participants"> - <div>🧑<a href="">{{ t.user.user_name }}</a></div> + <div>🧑<a href="">{{ t.user.show_name }}</a></div> <!-- <div>💬<a href=""> API UNAVAILABLE </a></div> --> </div> </div> diff --git a/templates/thread.html b/templates/thread.html index 3b88050022e38c8db24f68dddd33b1f328a3adfd..3ab2f020f45188e61ff7f5915775436a354142d2 100644 --- a/templates/thread.html +++ b/templates/thread.html @@ -32,7 +32,7 @@ </div> <div> <div class="userinfo"> - <a href="/home/main?id={{ p.user.user_id }}">{{ p.user.user_name }}</a> + <a href="/home/main?id={{ p.user.user_id }}">{{ p.user.show_name }}</a> {% if p.is_thread_author %} <span class="tag tag-blue">楼主</span> {% endif %} @@ -49,7 +49,7 @@ <img class="avatar" src="/proxy/avatar/{{ comment.user.portrait }}"> <div> <div class="userinfo"> - <a href="/home/main?id={{ comment.user.user_id }}">{{ comment.user.user_name }}</a> + <a href="/home/main?id={{ comment.user.user_id }}">{{ comment.user.show_name }}</a> </div> <div class="content"> {{ comment.contents|translate(comment.reply_to_id)|safe }}