From e8d60fa368fb37e660d85795ec82921f4d575364 Mon Sep 17 00:00:00 2001 From: Gregory Trullemans Date: Wed, 12 Oct 2022 13:12:25 +0200 Subject: [PATCH] update admin --- ultron/followup/admin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ultron/followup/admin.py b/ultron/followup/admin.py index 404a524451..35027989cb 100644 --- a/ultron/followup/admin.py +++ b/ultron/followup/admin.py @@ -145,6 +145,7 @@ class HeightWeightAdmin(admin.ModelAdmin): model = HeightWeight list_display = ("gymnast", "height", "hips_height", "weight", "date") + readonly_fields = ('season', 'week_number') list_filter = ( ('gymnast', RelatedDropdownFilter), )