Files
jumpserver/apps/users/templates/users/_msg_user_created.html
fit2bot eca637c120 perf: Translate msg template (#16050)
* fix: Correct translation for device and user limits in django.po

* perf: Translate msg template

---------

Co-authored-by: wangruidong <940853815@qq.com>
2025-09-17 19:04:06 +08:00

24 lines
546 B
Python

{% load i18n %}
<p>
{{ honorific }}
</p>
<div>
<p>
{{ content | safe }}
</p>
<p>
{% trans 'Username' %}: {{ username }} <br/>
{% trans 'Password' %}:
<a href="{{ rest_password_url }}?token={{ rest_password_token }}">
{% trans 'click here to set your password' %}
</a>
</p>
<br>
<p>
{% trans 'This link is valid for 1 hour. After it expires' %}
<a href="{{ forget_password_url }}?email={{ email }}">{% trans 'request new one' %}</a>
</p>
</div>