mpeltriaux
ff26019b6e
* adds mail sending logic for new notification setting * adds new templates for user and team based sending * enhances all email template layout * adds translations
25 lines
564 B
HTML
25 lines
564 B
HTML
{% load i18n %}
|
|
|
|
<div>
|
|
<h2>{% trans 'Request for new API token' %}</h2>
|
|
<hr>
|
|
<article>
|
|
{% trans 'Hello support' %},
|
|
<br>
|
|
<br>
|
|
{% trans 'you need to verify the API token for user' %}:
|
|
<br>
|
|
<br>
|
|
<strong>{{user.username}}</strong>
|
|
<br>
|
|
<br>
|
|
{% trans 'If unsure, please contact the user. The API token can not be used until you activated it in the admin backend.' %}
|
|
<br>
|
|
<br>
|
|
{% trans 'Best regards' %}
|
|
<br>
|
|
KSP
|
|
</article>
|
|
</div>
|
|
|