diff --git a/whats-open/api/admin.py b/whats-open/api/admin.py index b3759d3b2863f859ceaa29616da4f6027acd0120..6920dff1c7d7ee6c60867eb11d4a70cbf941ab82 100644 --- a/whats-open/api/admin.py +++ b/whats-open/api/admin.py @@ -52,7 +52,7 @@ class FacilityAdmin(admin.ModelAdmin): level=messages.ERROR) return HttpResponseRedirect(request.get_full_path()) return render(request, - 'bulk_schedules_intermediate.html', + 'bulk_schedules.html', context = {'facilities': queryset, 'schedules': Schedule.objects.all()}) assign_bulk_schedules.short_description = 'Set a main schedule for multiple facilities' @@ -74,7 +74,7 @@ class FacilityAdmin(admin.ModelAdmin): level=messages.ERROR) return HttpResponseRedirect(request.get_full_path()) return render(request, - 'bulk_special_schedules_intermediate.html', + 'bulk_special_schedules.html', context = {'facilities': queryset, 'schedules': Schedule.objects.all()}) assign_bulk_special_schedules.short_description = 'Add a special schedule to multiple facilities' diff --git a/whats-open/api/templates/bulk_schedules_intermediate.html b/whats-open/api/templates/bulk_schedules.html similarity index 100% rename from whats-open/api/templates/bulk_schedules_intermediate.html rename to whats-open/api/templates/bulk_schedules.html diff --git a/whats-open/api/templates/bulk_special_schedules_intermediate.html b/whats-open/api/templates/bulk_special_schedules.html similarity index 100% rename from whats-open/api/templates/bulk_special_schedules_intermediate.html rename to whats-open/api/templates/bulk_special_schedules.html