Skip to content
Snippets Groups Projects
Commit 2f878bb4 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

columns are also hidden in study subject details form

parent 5e4b4de6
No related branches found
No related tags found
1 merge request!101Resolve "list of subjects should contain columns dependent on the study"
...@@ -88,6 +88,18 @@ class StudySubjectDetailForm(ModelForm): ...@@ -88,6 +88,18 @@ class StudySubjectDetailForm(ModelForm):
model = StudySubject model = StudySubject
fields = '__all__' fields = '__all__'
def __init__(self, *args, **kwargs):
super(StudySubjectDetailForm, self).__init__(*args, **kwargs)
instance = getattr(self, 'instance', None)
prepare_study_subject_fields(fields=self.fields, study=self.study)
def get_study_from_study_subject_instance(study_subject):
if instance and instance.study_id:
self.study = Study.objects.filter(id=instance.study_id)[0]
else:
self.study = Study(columns=StudyColumns())
class StudySubjectEditForm(ModelForm): class StudySubjectEditForm(ModelForm):
datetime_contact_reminder = forms.DateTimeField(label="Contact on", datetime_contact_reminder = forms.DateTimeField(label="Contact on",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment