jumpserver/apps/perms/templates/perms/_msg_permed_items_expire.html

23 lines
375 B
Python

{% load i18n %}
<p>
{% trans 'Hello' %} {{ name }},
</p>
<p>
{% blocktranslate %}
The following {{ item_type }} will expire in {{ count }} days
{% endblocktranslate %}
</p>
<ul>
{% for item in items %}
<li>{{ item }}</li>
{% endfor %}
</ul>
<br />
-
<p>
{% trans 'If you have any question, please contact the administrator' %}
</p>