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

appointment has list of examination types

parent 93fb4ea3
No related branches found
No related tags found
1 merge request!1Appointments dev
...@@ -429,8 +429,8 @@ class Appointment(models.Model): ...@@ -429,8 +429,8 @@ class Appointment(models.Model):
verbose_name='Worker conducting the assessment (if applicable)', verbose_name='Worker conducting the assessment (if applicable)',
null=True, blank=True null=True, blank=True
) )
appointment_type = models.ForeignKey(AppointmentType, appointment_types = models.ManyToManyField(AppointmentType,
verbose_name='Appointment type', verbose_name='Appointment types',
null=True, blank=True null=True, blank=True
) )
room = models.ForeignKey(Room, room = models.ForeignKey(Room,
......
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