I have a project where I'm taking a bunch of articles originally
written for a on a tripod page, and putting them into a database so
they can be served up by django.

Right now I have it all set up and working, but theres one problem. A
lot of these articles are very image heave. Each one has an average of
about 10 images.

I'm thinking of creating an app which acts, in part, as a modified
text widget in the admin. There will be a text box just like how there
is now, plus there will also be above it, another widget where you can
drag and drop images. When you save the model instance, it will save
those images into a directory named according to the slug of the
instance, or by the primary key, or maybe even the natural key.

Each image will be given a number based on the order of it being
uploaded. In the text box, where you want the images to be placed, you
enter something like <img src="{1}"> and the {1} will be replaced with
the url for that image.

Before I get started on this, does something similar to this exist? I
don't want to reinvent the wheel or anything...

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to