so I have this two models:
class Patient(models.Model):
patientID = models.CharField(max_length=200 , default='Enter PatientID')
age = models.IntegerField(default='-')
gender = models.CharField(max_length=200,choices=Gender_Choice, default='UNDEFINED')
class RiskFactor(models.Model):
patient = models.OneToOneField(Patient, on_delete=models.CASCADE)
hypertension = models.BooleanField(default=False)
diabetes = models.BooleanField(default=False)
PAVK = models.BooleanField(default=False)
nicotin = models.BooleanField(default=False)
So I've changed from ForeignKey to OnetoOneField because of reasons. So with the ForeignKey everything was easypeasy and I can show the data of the RiskFactor model in my Patient detail template. Now I have problems to change the query. I just don't know how to change this:
<ul>
{% for rfac in patient.riskfactor_set.all %}
<li>Hypertension: {{ rfac.hypertension }}<br/>
Diabetes: {{ rfac.diabetes }}<br/>
PAVK: {{ rfac.PAVK }}<br/>
Nicotin: {{ rfac.nicotin }}<br/>
</li>
{% endfor %}
</ul>
into sth that shows the riskfactor data from the patient with a OneToOneRel.
Thanks for your help!
I would add
related_name="risk_factor"
to your OneToOneField declaration, just to make it more clear how to reference the associated RiskFactor. From there, you can reference it like any other property ofpatient
- it no longer is a list, but a single object. Like so belowYou can do without the
with
statement, but it makes it easiest to convert your code, plus then you would have to putpatient.risk_factor.
before every property you want, so might as well save it torfac
.