From 463491a00f95b194ef9c9a1bcb4f8d4789b36fc3 Mon Sep 17 00:00:00 2001 From: Johanna England Date: Thu, 14 Nov 2024 11:13:41 +0100 Subject: [PATCH] Remove unused userinfo template This has been replaced by the preference template in 5c5accd --- .../nav/web/templates/useradmin/userinfo.html | 66 ------------------- 1 file changed, 66 deletions(-) delete mode 100644 python/nav/web/templates/useradmin/userinfo.html diff --git a/python/nav/web/templates/useradmin/userinfo.html b/python/nav/web/templates/useradmin/userinfo.html deleted file mode 100644 index da4cd8f69a..0000000000 --- a/python/nav/web/templates/useradmin/userinfo.html +++ /dev/null @@ -1,66 +0,0 @@ -{% extends "useradmin/base.html" %} -{% load crispy_forms_tags %} - -{% block content %} - {% for m in current_user_data.messages %} -
{{ m.message }}
- {% endfor %} -
User information
- -
-
- - - - - - - - - - - - - - - - - -
Login:{{ account.login }}
Name:{{ account.name }}
Groups: - {% if account.groups.all %} -
    - {% for g in account.groups.all %} -
  • {{ g }}
  • - {% endfor %} -
- {% else %} - None - {% endif %} -
Organizations: - {% if account.organizations.all %} -
    - {% for o in account.organizations.all %} -
  • {{ o }}
  • - {% endfor %} -
- {% else %} - None - {% endif %} -
-
- -
- - {% if account.ext_sync %} -

- You are not allowed to change your password from this page. Your - account is managed through an external system, known as "{{ account.ext_sync }}". -

- {% else %} - {% crispy password_form %} - {% endif %} - -
-
- -{% endblock %}