Skip to content
Snippets Groups Projects
Commit 2264d7d9 authored by Carlos Vega's avatar Carlos Vega
Browse files

added custom fields for visits, subject, studysubject

parent d0200e3a
Branches nkindlon-master2
No related tags found
1 merge request!173Feature/export selected columns
...@@ -50,6 +50,27 @@ class CustomField: ...@@ -50,6 +50,27 @@ class CustomField:
DROP_OUT_FIELD = CustomField({'verbose_name': "DROP OUT", 'name': "custom-drop-out"}) DROP_OUT_FIELD = CustomField({'verbose_name': "DROP OUT", 'name': "custom-drop-out"})
APPOINTMENT_TYPE_FIELD = CustomField({
'name': 'appointment_types',
'verbose_name': 'Appointment Types'
})
STUDY_SUBJECT_FIELDS = [CustomField({
'name': 'nd_number',
'verbose_name' : 'ND number'
})]
SUBJECT_FIELDS = [CustomField({
'name': 'last_name',
'verbose_name': 'Family name'
}),
CustomField({
'name': 'first_name',
'verbose_name': 'Name'
})]
VISIT_FIELDS = [CustomField({
'name': 'visit_number',
'verbose_name': 'Visit'
})]
def get_subjects_as_array(): def get_subjects_as_array():
......
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