I have this setup:
class Observation(models.Model):
start_time = models.DateTimeField()
measurements = generic.GenericRelation(Measurement)
class Measurement(models.Model):
variable = models.ForeignKey(Variable)
value = models.CharField(max_length=300, blank=True)
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey('content_type', 'object_id')
These are simplified models of course. Measurement needs to be generic because it is also used elsewhere.
I want to make a page on which I can create an Observation and the related Measurements. The user should be able to add Measurements that are not yet present on the observation. I have a working ModelForm for Measurement.
I keep running into relations not existing, and I think I am making a silly mistake involving generic_inlinemodelform. I have searched but cannot find an example for this. Can anyone help me out, either by providing an example or linking to it?