Merge branch 'fix-deprecated-translation-tags' into 'master'

[FIX] Deprecated `{% blocktrans %}` tags to `{% blocktranslate %}`

See merge request allianceauth/allianceauth!1454
This commit is contained in:
Ariel Rin
2022-09-07 06:22:55 +00:00
14 changed files with 26 additions and 26 deletions

View File

@@ -16,7 +16,7 @@
<div class="row">
<form action="" method="post">
{% csrf_token %}
<p>{% blocktrans %}Are you sure you want to delete timer "{{ object }}"?{% endblocktrans %}</p>
<p>{% blocktranslate %}Are you sure you want to delete timer "{{ object }}"?{% endblocktranslate %}</p>
<input class="btn btn-danger btn-block" type="submit" value="Confirm">
</form>
</div>