jforsman
jforsman
Simple example: class ModelA(models.Model): id = ... class ModelB(models.Model): modela = models.ForeignKey(ModelA, related="modelbs") I want to have auditlog change entry on a ModelA instance when ModelB is created, deleted, changed...
If a FeatureField has reference to a different model via FK reference, GetCapabilities query is not working. eg. `FeatureField( "not_working", model_attribute="some_fk.field_name", abstract="does not work", )` Result from eg. http://localhost:8000/wfs/?SERVICE=WFS&VERSION=2.0.0&REQUEST=GetCapabilities Now...