Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/revolunet/django-chunks
django-chunks with TinyMce+upload support
https://github.com/revolunet/django-chunks
Last synced: 3 months ago
JSON representation
django-chunks with TinyMce+upload support
- Host: GitHub
- URL: https://github.com/revolunet/django-chunks
- Owner: revolunet
- License: bsd-3-clause
- Fork: true (clintecker/django-chunks)
- Created: 2010-04-14T22:54:44.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2014-01-13T23:15:15.000Z (almost 11 years ago)
- Last Synced: 2024-07-15T15:42:02.543Z (5 months ago)
- Language: Python
- Homepage: http://github.com/revolunet/django-chunks
- Size: 681 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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.
I added a TinyMce in admin and image upload views
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.
set setttings.CHUNKS_UPLOAD_ROOT
add to urls.py :
# upload views
urlpatterns += patterns('', (r'^admin/chunks/views/.*', include('chunks.urls')),
add a static mapping from /chunks/media to your setttings.CHUNKS_UPLOAD_ROOT (included un urls.py for dev only)
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.### Why would anyone want this? ###
Well it essentially allows someone to define "chunks" (I had wanted to call it blocks, but that would be very confusing for obvious reasons) of content in your template that can be directly edited from the awesome Django admin interface. Throwing a rich text editor control on top of it make it even easier.
### Usage: ###
{% load chunks %}
Test
Blah blah blah
...
{% chunk "home_page_left" %}
{% chunk "home_page_right" %}
This is really helpful in those cases where you want to use `django.contrib.flatpages` but you need multiple content areas. I hope this is helpful to people and I'll be making minor edits as I see them necessary.