Presently, there's not a way without altering models to be able to have
inline models if dependencies are declared on the "owning" class. Allow me
to explain with code:
class Person(models.Model):
address = models.OneToOneField("Address")
class Monument(models.Model):
address = models
a good idea.
Thanks,
- TK
On Fri, Mar 30, 2012 at 1:49 PM, ptone wrote:
>
>
> On Friday, March 30, 2012 11:44:29 AM UTC-7, Tyler Kocheran wrote:
>
> There's really no reason for an `Address` to know of itself what it is
>> owned by, it could be owned by multiple
YUSS. Yeah, it's just been kind of frustrating trying to get this to work
lately. I designed a whole model set, then realized that it won't work with
admin :) 1.4.1?
Thanks,
- TK
On Fri, Mar 30, 2012 at 3:09 PM, ptone wrote:
>
>
> On Friday, March 30, 2012 1:58:08 PM UT