From 2aff0f6a320f5054686f6fa23514159a32319a1e Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 11 Nov 2024 13:42:35 +0000 Subject: [PATCH] add nuclear modicien --- oef/views.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/oef/views.py b/oef/views.py index fcd0879b..cccc5fd6 100644 --- a/oef/views.py +++ b/oef/views.py @@ -125,6 +125,10 @@ def subspecialties(request): for s in subspecialties: format_map.append((s, s.formats_set.all())) + format_map.append( + "Nuclear Medicine", Formats.objects.filter(name__startswith="NM") + ) + return render(request, "oef/subspecialties.html", context={ "format_map": format_map })