「ショップ」および「公園」オブジェクトの管理画面で「GeoData」をインラインで表示する方法はありますか?
(1 つのショップ/パークに複数の場所を含めることができます)
# Location data
class GeoData(models.Model):
lat = models.FloatField()
lon = models.FloatField()
description = models.TextField()
# Parent class for every object with location data
class GeoEntity(models.Model):
title = models.CharField(max_length=32)
position = models.ForeignKey(GeoData)
class Shop(GeoEntity):
tel = models.CharField(max_length=32)
address = models.TextField()
class Park(GeoEntity):
wifi = models.BooleanField()
area = models.IntegerField()
Google から多くのオプションを試しましたが、どれも機能しませんでした。
ありがとう。