Categorized: Django
Installing Django Basic Blog
Somewhere inside a folder that’s on your PYTHONPATH:
svn checkout http://django-basic-apps.googlecode.com/svn/trunk/ basic
Under INSTALLED_APPS in settings.py.:
'tagging',
'basic.blog',
'basic.inlines',
'django.contrib.comments',
'django.contrib.markup',
Be sure you have django-tagging installed.
In your main urls.py:
(r'^blog/', include('basic.blog.urls')),
(r'^comments/', include('django.contrib.comments.urls')),
Now if you want, you can override the app’s own templates by copying them into your own templates/blog folder.
Comments
Works great! thanks..
What do you think about that?