Merge pull request #774 from TheLegend875/master

fixed display of username when not logged in
master
mergify[bot] 5 years ago committed by GitHub
commit 0978ec519e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -53,7 +53,7 @@ configure your email client
</tr>
<tr>
<th>{% trans %}Username{% endtrans %}</th>
<td><pre>{{ current_user or "******" }}</pre></td>
<td><pre>{{ current_user if current_user.is_authenticated else "******" }}</pre></td>
</tr>
<tr>
<th>{% trans %}Password{% endtrans %}</th>

Loading…
Cancel
Save