Re: porting edit_inline=True to admin.py

2013-12-12 Thread MikeKJ
Hi Daniel Sorry, I believe it was v0.97 and yes I have been chunking through it for a few days now, I have the front end fully working on python2.7 django v1.3.7 mod_wsgi 3.4 I just wanted confirmation on the admin.py for that model as the 0.97 construct for the foreign key relationships alth

Re: porting edit_inline=True to admin.py

2013-12-12 Thread MikeKJ
Hmm just found this http://stackoverflow.com/questions/9738995/django-admin-with-multiple-inlines-of-the-same-model which would make the line of admin.py inlines = [Publications, Paragraphs,]? but I am still getting an error of SyntaxError at /admin/honorary/member/invalid syntax (urls.py, line

porting edit_inline=True to admin.py

2013-12-12 Thread MikeKJ
This is the old model.py that works well in that paragraphs and publications are part of the author model in admin [code] class Author(models.Model): name = models.CharField(max_length=200, help_text="eg Sir John Smith KCMG") picture = models.ImageField(upload_to='honorary_member_images'