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 })