fix: jinja template had missing }} (#33541)

Signed-off-by: Akhil Narang <me@akhilnarang.dev>
This commit is contained in:
Akhil Narang 2025-08-05 17:26:33 +05:30 committed by GitHub
parent 873d020ced
commit 0cd2f9ef05
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,6 @@
Hello,
<br>
<p> {{ _("Please use following links to download file backup.") </p>
<p> {{ _("Public Files Backup:") <a href='{{ backup_path_files }}'>{{ backup_path_files }}</a> </p>
<p> {{ _("Private Files Backup:") <a href='{{ backup_path_private_files }}'>{{ backup_path_private_files }}</a> </p>
<p> {{ _("Please use following links to download file backup.") }} </p>
<p> {{ _("Public Files Backup:") }} <a href='{{ backup_path_files }}'>{{ backup_path_files }}</a> </p>
<p> {{ _("Private Files Backup:") }} <a href='{{ backup_path_private_files }}'>{{ backup_path_private_files }}</a> </p>