aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/admin/dashboard.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-04 22:13:10 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-04 22:13:10 +0200
commit6445823625cbdede363a0236848adc7c4682aa70 (patch)
treee5734ecbc3cdc53a9f724f07cfc2ac828f69d6b0 /pyaggr3g470r/templates/admin/dashboard.html
parentThe user has now the possibility to delete it's account. (diff)
downloadnewspipe-6445823625cbdede363a0236848adc7c4682aa70.tar.gz
newspipe-6445823625cbdede363a0236848adc7c4682aa70.tar.bz2
newspipe-6445823625cbdede363a0236848adc7c4682aa70.zip
Confirmation message before suppression of accounts and suppression of feeds.
Diffstat (limited to 'pyaggr3g470r/templates/admin/dashboard.html')
-rw-r--r--pyaggr3g470r/templates/admin/dashboard.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/admin/dashboard.html b/pyaggr3g470r/templates/admin/dashboard.html
index a9b3e546..5c7fa5c1 100644
--- a/pyaggr3g470r/templates/admin/dashboard.html
+++ b/pyaggr3g470r/templates/admin/dashboard.html
@@ -25,7 +25,7 @@
<td>
<a href="/admin/user/{{ user.id }}/"><i class="glyphicon glyphicon-user" title="{{ _('View this user') }}<"></i></a>
<a href="/admin/edit_user/{{ user.id }}/"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this user') }}"></i></a>
- <a href="/admin/delete_user/{{ user.id }}/"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this user') }}"></i></a>
+ <a href="/admin/delete_user/{{ user.id }}/"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this user') }}" onclick="return confirm('{{ _('You are going to delete this account.') }}');"></i></a>
</td>
</tr>
{% endfor %}
bgstack15