mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-07-03 15:50:28 +00:00
* fix: Correct translation for device and user limits in django.po * perf: Translate msg template --------- Co-authored-by: wangruidong <940853815@qq.com>
24 lines
546 B
Python
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>
|