Tuesday, June 1, 2021

Re: Inlined hierarchy models in django admin site.

class Vaccine(models.Model)
     vaccine = models.ForeignKey(PatientVaccineStatus, related_name="vaccine_status")
    patient = models.ForeignKey(Patient, related_name="patient")  # new line
apply this line and your patient model will be linked with Vaccine model 

On Tue, Jun 1, 2021 at 11:06 AM Ayush Bisht <bisht.ayush2001@gmail.com> wrote:
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.

--
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/CAKPY9pmwZP9mK%3DFaLVBtcHnm7f0UUGU0KqA%3DVa_CyzSszwOe6g%40mail.gmail.com.

No comments:

Post a Comment