diff --git a/epauth/views.py b/epauth/views.py index ded983d4..264d9185 100644 --- a/epauth/views.py +++ b/epauth/views.py @@ -102,7 +102,7 @@ def entra_callback(request): else: auth_log.info(f"Registering {user_name} with OID {user_oid}") - u = UserManager.create_user(user_name, user_email, None, uuid=user_oid, is_active=True) + u = UserManager.create_user(user_name, user_email, None, uuid=user_oid, is_active=True, add_to_group=False) registered = True auth_log.info(f"User {user_name} {'(admin) ' if u.is_superuser else ''}with OID {user_oid} successfully logged in as {u.username} from {get_remote_address(request)}") diff --git a/templates/objects/edge.html b/templates/objects/edge.html index 956a468a..ba0822c3 100644 --- a/templates/objects/edge.html +++ b/templates/objects/edge.html @@ -57,7 +57,7 @@
Description
-
{{ edge.description }}
+
{{ edge.get_description }}
{% if edge.aliases %} diff --git a/templates/objects/node.html b/templates/objects/node.html index 0284f888..f40a2e09 100644 --- a/templates/objects/node.html +++ b/templates/objects/node.html @@ -60,7 +60,7 @@
Description
-
{{ node.description }}
+
{{ node.get_description }}
{% endif %} {% epdb_slot_templates "epdb.objects.node.viz" as viz_templates %}