Re: django basic blog and inlines

2009-11-16 Thread Bobby Roberts
doh! thanks Karen On Nov 16, 2:10 pm, Karen Tracey wrote: > On Mon, Nov 16, 2009 at 1:58 PM, Bobby Roberts wrote: > > ok so i deleted what i had done and did the following: > > > 1.  uploaded the entire basic app directory into django_apps/live/ > > basic > > 2.  changed installed apps to load:

Re: django basic blog and inlines

2009-11-16 Thread Karen Tracey
On Mon, Nov 16, 2009 at 1:58 PM, Bobby Roberts wrote: > ok so i deleted what i had done and did the following: > > 1. uploaded the entire basic app directory into django_apps/live/ > basic > 2. changed installed apps to load: > basic.blog > basic.inlines > > > Now i'm getting a tota

Re: django basic blog and inlines

2009-11-16 Thread Bobby Roberts
ok so i deleted what i had done and did the following: 1. uploaded the entire basic app directory into django_apps/live/ basic 2. changed installed apps to load: basic.blog basic.inlines Now i'm getting a totally different traceback athttp://www.thecigarcastle.com/blog/2009/nov/1

Re: django basic blog and inlines

2009-11-16 Thread Karen Tracey
On Mon, Nov 16, 2009 at 12:49 PM, Bobby Roberts wrote: > Karen - > > Thanks for your reply... The path in both my blog and inlines module > was edited and i removed basic. from all the calls (since i wasn't > using the primary basic/ directory with all of the standard apps. The > error was there

Re: django basic blog and inlines

2009-11-16 Thread Bill Freeman
So then the answer to my question is "no", you do not have a file inlines.py in a directory named "templatetags" which is itself in an app directrory recognizable by the presence of a models.py, the path such that the models.py file is importable as appname.models, and the app mentioned in INSTALLE

Re: django basic blog and inlines

2009-11-16 Thread Bobby Roberts
Karen - Thanks for your reply... The path in both my blog and inlines module was edited and i removed basic. from all the calls (since i wasn't using the primary basic/ directory with all of the standard apps. The error was there even if when i was using basic/blog or basic/inlines structure as d

Re: django basic blog and inlines

2009-11-16 Thread Mike Ramirez
On Monday 16 November 2009 09:20:03 Bobby Roberts wrote: > the path to inlines.py is: > > /django_apps/live/inlines/inlines.py > > > live is on my pythonpath (my main application) > > blogs and inlines were pulled out of the basic app and put into these > directories > > /django_apps/live/blog

Re: django basic blog and inlines

2009-11-16 Thread Karen Tracey
On Mon, Nov 16, 2009 at 12:20 PM, Bobby Roberts wrote: > the path to inlines.py is: > > /django_apps/live/inlines/inlines.py > > > live is on my pythonpath (my main application) > > blogs and inlines were pulled out of the basic app and put into these > directories > > /django_apps/live/blog/ (w

Re: django basic blog and inlines

2009-11-16 Thread Bobby Roberts
the path to inlines.py is: /django_apps/live/inlines/inlines.py live is on my pythonpath (my main application) blogs and inlines were pulled out of the basic app and put into these directories /django_apps/live/blog/ (works) /django_apps/inlines/(doesn't work) you can view the full trace

Re: django basic blog and inlines

2009-11-16 Thread Bill Freeman
Do you have among your installed apps a name identifying a directory on the python path having both a models.py and a subdirectory named templatetags, that subdirectory containing a file inlines.py ? Or was that in the stuff you excluded from basic.app? Bill On Sun, Nov 15, 2009 at 10:34 PM, Bob

django basic blog and inlines

2009-11-15 Thread Bobby Roberts
ok i have no idea what is going on here. I have django basic blog loaded to my site. I've also installed inlines as follows: INSTALLED_APPS = ( ... 'inlines', 'blog', ) (yeah i pulled out the blog dir from the basic dir because i'm not using all the other basic app stuff) You can verif