aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/admin
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-07 10:54:12 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-07 10:54:12 +0200
commite9be14b09ad60e406ddc264f5cd550360ff44bb5 (patch)
tree25f489bfd289dc8ca4404b8c0e26d7d0553a8dee /src/web/templates/admin
parentSend an email for the account confirmation. (diff)
downloadnewspipe-e9be14b09ad60e406ddc264f5cd550360ff44bb5.tar.gz
newspipe-e9be14b09ad60e406ddc264f5cd550360ff44bb5.tar.bz2
newspipe-e9be14b09ad60e406ddc264f5cd550360ff44bb5.zip
delete a user
Diffstat (limited to 'src/web/templates/admin')
-rw-r--r--src/web/templates/admin/dashboard.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/admin/dashboard.html b/src/web/templates/admin/dashboard.html
index 925d4cac..6a0793ce 100644
--- a/src/web/templates/admin/dashboard.html
+++ b/src/web/templates/admin/dashboard.html
@@ -34,7 +34,7 @@
<i class="glyphicon glyphicon-ok-circle" title="{{ _("Enable this account") }}"></i>
{% endif %}
</a>
- <a href="{{ url_for("admin.toggle_user", user_id=user.id) }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this user') }}" onclick="return confirm('{{ _('You are going to delete this account.') }}');"></i></a>
+ <a href="{{ url_for("admin.delete_user", user_id=user.id) }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this user') }}" onclick="return confirm('{{ _('You are going to delete this account.') }}');"></i></a>
{% endif %}
</td>
</tr>
bgstack15