Monday, May 31, 2021

Inlined hierarchy models in django admin site.

class Patient(models.Model):
     patient_id = models.CharField(max_length=60)


class PatientVaccineStatus(models.Model):
      patient = models.ForeignKey(Patient, related_name="patient_vaccine_status")

class Vaccine(models.Model)
     vaccine = models.ForeignKey(PatientVaccineStatus, related_name="vaccine_status")
 
..................................................................

Is there any way to merged all the tables in a single table of patient.

I successfully merge, PatientVaccineStatus table with Patient table, but Vaccine's table is not merging with the Patient. 

how can this hierarchy be merged in a single table.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/57aac480-cb53-4fbe-a3bd-8766cd7a5b82n%40googlegroups.com.

No comments:

Post a Comment