website/docs: fix email template formatting (#9330)

fix formating issue

Fixes:
django.template.exceptions.TemplateSyntaxError: 'blocktrans' doesn't allow other block tags (seen "trans 'You recently requested to change your password for you authentik account. Use the button below to set a new password.'") inside it

Signed-off-by: Zapfmeister <zapfmeister@gmail.com>
This commit is contained in:
Zapfmeister
2024-04-18 12:20:17 +02:00
committed by GitHub
parent c35217f581
commit d7b872c1e0

View File

@ -98,8 +98,8 @@ Templates are rendered using Django's templating engine. The following variables
{% block content %}
<tr>
<td class="alert alert-success">
{% blocktrans with username=user.username %} Hi {{ username }}, {%
endblocktrans %}
{% blocktrans with username=user.username %} Hi {{ username }},
{% endblocktrans %}
</td>
</tr>
<tr>