aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/admin
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-15 17:37:48 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-15 17:37:48 +0200
commited1cc0c3944aa27fd889b24beae0b6bebb80241d (patch)
tree7488afcc850a4ef24b7db5e969bd9a28056f08c9 /pyaggr3g470r/templates/admin
parentTypo. (diff)
downloadnewspipe-ed1cc0c3944aa27fd889b24beae0b6bebb80241d.tar.gz
newspipe-ed1cc0c3944aa27fd889b24beae0b6bebb80241d.tar.bz2
newspipe-ed1cc0c3944aa27fd889b24beae0b6bebb80241d.zip
Fix.
Diffstat (limited to 'pyaggr3g470r/templates/admin')
-rw-r--r--pyaggr3g470r/templates/admin/dashboard.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyaggr3g470r/templates/admin/dashboard.html b/pyaggr3g470r/templates/admin/dashboard.html
index 1d9194e0..d40ffdf5 100644
--- a/pyaggr3g470r/templates/admin/dashboard.html
+++ b/pyaggr3g470r/templates/admin/dashboard.html
@@ -24,9 +24,9 @@
<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>
{% if user.activation_key == "" %}
- <a href="/admin/enable_user/{{ user.id }}/"><i class="glyphicon glyphicon-ban-circle" title="Disable this account"></i></a>
+ <a href="/admin/disable_user/{{ user.id }}/"><i class="glyphicon glyphicon-ban-circle" title="Disable this account"></i></a>
{% else %}
- <a href="/admin/disable_user/{{ user.id }}/"><i class="glyphicon glyphicon-ok-circle" title="Enable this account"></i></a>
+ <a href="/admin/enable_user/{{ user.id }}/"><i class="glyphicon glyphicon-ok-circle" title="Enable this account"></i></a>
{% endif %}
<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>
bgstack15