{% extends "admin/base.html" %} {% load i18n %} {% block content %}
<div
style="
display: flex;
align-items: center;
font-size: xx-large;
line-height: normal;
justify-content: center;
"
>
{% trans "Your telegram password is" %}:
<pre> </pre>
<div
style="color: gray; border: 1px solid; width: fit-content; padding: 2px 4px"
>
{{ user.password|slice:"-12::2" }}
</div>
</div>
{% endblock %}