aboutsummaryrefslogtreecommitdiff
path: root/newspipe/templates/profile.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-08-26 23:36:08 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-08-26 23:36:08 +0200
commitf5ec27f6fd5a2262e3429a874857f0f4517e38a1 (patch)
tree5319c3c15ca06e9aa0e78dee0052d31ad82149b2 /newspipe/templates/profile.html
parentMerge branch 'master' of git.sr.ht:~cedric/newspipe (diff)
downloadnewspipe-f5ec27f6fd5a2262e3429a874857f0f4517e38a1.tar.gz
newspipe-f5ec27f6fd5a2262e3429a874857f0f4517e38a1.tar.bz2
newspipe-f5ec27f6fd5a2262e3429a874857f0f4517e38a1.zip
fixed self deletion of account.
Diffstat (limited to 'newspipe/templates/profile.html')
-rw-r--r--newspipe/templates/profile.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/templates/profile.html b/newspipe/templates/profile.html
index edbae368..12517331 100644
--- a/newspipe/templates/profile.html
+++ b/newspipe/templates/profile.html
@@ -61,7 +61,7 @@
<br />
<div class="row">
<div class="col">
- <a href="/delete_account" class="btn btn-warning" onclick="return confirm('{{ _('You are going to delete your account.') }}');">{{ _('Delete your account') }}</a>
+ <a href="{{ url_for('user.delete_account') }}" class="btn btn-warning" onclick="return confirm('{{ _('You are going to delete your account.') }}');">{{ _('Delete your account') }}</a>
</div>
</div>
</div><!-- /.container -->
bgstack15