The Basics
Think of it as flatpages for small bits of reusable content you might want to insert into your templates and manage from the admin interface.
This is really nothing more than a model and a template tag.
By adding chunks to your installed apps list in your Django project and performing a ./manage.py syncdb, you’ll be able to add as many “keyed” bits of content chunks to your site.
The idea here is that you can create a chunk of content, name it with a unique key (for example: home_page_left_bottom) and then you can call this content from a normal template.
Grab the Repository – svn checkout http://django-chunks.googlecode.com/svn/trunk/
Recent Commits
-
7 was committed 4 months ago.
No commit message supplied.
-
6 was committed 4 months ago.
getting setup.py into a working state
-
5 was committed 4 months ago.
changing how the project is packaged
-
4 was committed 4 months, 3 weeks ago.
* Added the ability to pass in a caching time and have the chunk cached in the site’s caching store. Thanks to Kevin Fricovsky for the suggestion!
-
3 was committed 4 months, 3 weeks ago.
Adding these administrative files
-
2 was committed 5 months ago.
Initial import
-
1 was committed 5 months ago.
Initial directory structure.