Zidek / django-basic-apps

Automatically exported from code.google.com/p/django-basic-apps
0 stars 0 forks source link

django.templatetags.inlines when creating new post #35

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I did a fresh checkout today (r102 I'm guessing) and installed it into my 
Python path. All loaded up 
fine after syncing the DB, etc. except when I went to create a new post I got 
an error about django.templatetags.inlines missing. A quick look in 
django/templatetags shows that there isn't an 
inlines.py. I don't see one in Django's trunk either. 

I fixed it, temporarily, by removing blog's admin templates.

Original issue reported on code.google.com by jst...@gmail.com on 22 Feb 2009 at 11:38

GoogleCodeExporter commented 8 years ago
I was missing the 'basic.inlines' in my INSTALLED_APPS. Should probably add 
this to your documentation so 
others don't get confused. Someone in #django told me to just nuke the admin 
templates.

Original comment by jst...@gmail.com on 22 Feb 2009 at 11:50

GoogleCodeExporter commented 8 years ago
I found the INSTALLED_APPS instructions on the main page actually don't work as
prescribed. I had to add all applications like

'basic.blog',
'basic.inlines',
'basic.books',

etc.

Original comment by gringoca...@gmail.com on 22 Jun 2009 at 7:52