Hi,
I'm writing an app that have recursive relations like this (pseudocode):
class atist:
name = charfield
(...)
class press:
pub = foreingkey(artist)
class works:
work = foreingkey(artist)
class img:
im = foreingkey(works)
I'm was thinking if this is the better approach to solve this problem, or if i would use another kind of relation like many to many? and for other side how i can regist this app in the admin site to have only one page for artist with works and press as inline objects of artist?
thanks