From 2027d9d3abd70983a590cc708bf6b592767fff4f Mon Sep 17 00:00:00 2001 From: James Graham Date: Wed, 2 Dec 2020 14:57:27 +0000 Subject: [PATCH] fix: remove refactored questions from person form --- people/forms.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/people/forms.py b/people/forms.py index 645fd1a..5e6a2a1 100644 --- a/people/forms.py +++ b/people/forms.py @@ -32,13 +32,6 @@ class PersonForm(forms.ModelForm): model = models.Person fields = [ 'name', - 'nationality', - 'country_of_residence', - 'organisation', - 'organisation_started_date', - 'job_title', - 'disciplines', - 'themes', ] widgets = { 'nationality': Select2Widget(),