From 2e0d913dd7642b5d856f9e85f480228d9415ddd8 Mon Sep 17 00:00:00 2001 From: nd <git@notandy.de> Date: Mon, 5 Apr 2021 17:03:11 +0200 Subject: [PATCH] remove redundant edit button on user list --- uffd/user/templates/user_list.html | 8 -------- 1 file changed, 8 deletions(-) diff --git a/uffd/user/templates/user_list.html b/uffd/user/templates/user_list.html index 858e0993..9e420323 100644 --- a/uffd/user/templates/user_list.html +++ b/uffd/user/templates/user_list.html @@ -18,7 +18,6 @@ <th scope="col">login name</th> <th scope="col">display name</th> <th scope="col">roles</th> - <th scope="col"></th> </tr> </thead> <tbody> @@ -40,13 +39,6 @@ <a href="{{ url_for("role.show", roleid=role.id) }}">{{ role.name }}</a>{% if not loop.last %}, {% endif %} {% endfor %} </td> - <td> - <p class="text-right m-0"> - <a href="{{ url_for("user.show", uid=user.uid) }}" class="btn btn-primary btn-sm"> - <i class="fa fa-edit" aria-hidden="true"></i> Edit - </a> - </p> - </td> </tr> {% endfor %} </tbody> -- GitLab