diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-07 11:25:52 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-07 11:25:52 +0200 |
commit | 1575b8a90aa9f099438e2d224f7b34e044d96394 (patch) | |
tree | 3ea54771d23a3944d84d16d98ed9986be47a9395 /src/web/templates | |
parent | Bug fix. (diff) | |
download | newspipe-1575b8a90aa9f099438e2d224f7b34e044d96394.tar.gz newspipe-1575b8a90aa9f099438e2d224f7b34e044d96394.tar.bz2 newspipe-1575b8a90aa9f099438e2d224f7b34e044d96394.zip |
Removed the endponint to see stats about a user.
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/admin/dashboard.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/admin/dashboard.html b/src/web/templates/admin/dashboard.html index 6a0793ce..0d45118d 100644 --- a/src/web/templates/admin/dashboard.html +++ b/src/web/templates/admin/dashboard.html @@ -25,7 +25,7 @@ <td class="date">{{ user.date_created | datetime }}</td> <td class="date">{{ user.last_seen | datetime }}</td> <td> - <a href="{{ url_for("admin.user", user_id=user.id) }}"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this user') }}"></i></a> + <a href="{{ url_for("admin.user_form", user_id=user.id) }}"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this user') }}"></i></a> {% if user.id != current_user.id %} <a href="{{ url_for("admin.toggle_user", user_id=user.id) }}"> {% if user.is_active %} |