using this simple model: class Label(meta.Model): fields = ( meta.CharField('name', 'name', maxlength=200, core=True), meta.URLField('url', 'url', blank=True, core=True), ) #admin = meta.Admin()
def __repr__(self): return self.name class Artist(meta.Model): fields = ( meta.ForeignKey(Label, edit_inline=True), meta.CharField('name', maxlength=200), meta.URLField('url', blank=True) ) admin = meta.Admin() def __repr__(self): return self.name http://..../admin/apps/artists/add return: KeyError: 'Field label_id not found' either with mysql or sqlite3 where is the error? greets -- rm