From 874e48de03fe3f8ea2066d197f2b11031ef15fb8 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 7 Mar 2023 15:53:46 +0100 Subject: [PATCH] fix professor --- teleforma/views/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/teleforma/views/core.py b/teleforma/views/core.py index c628047f..95eac19c 100644 --- a/teleforma/views/core.py +++ b/teleforma/views/core.py @@ -699,6 +699,7 @@ class ProfessorListView(View): from teleforma.models import Organization, Department departments = Department.objects.all() professors = Professor.objects.all() + professors_new = [] for department in departments: url = 'https://' + department.domain + '/json/' -- 2.39.5