Is there a way to make the "GeoData" display embedded in the admin for the "Shop" and "Park" objects?
(One store / park may contain several locations)
# Location data class GeoData(models.Model): lat = models.FloatField() lon = models.FloatField() description = models.TextField()
I tried many options from Google, but none of them worked.
Thanks.
source share