On 14 oct, 23:06, Tim Sawyer <[EMAIL PROTECTED]> wrote: > Hi, > > I'm trying to puzzle out the best way of achieving something, and I'd > appreciate some help. > > My website contains text writeups of events, and a gallery. I'd like to embed > some images from the gallery into the text writeups. The text is not in a > template, it's in the database and displayed using the textile filter: > > {% block body %} > <div id="contestpage"> > <h1>{{ Contest.date|date:"jS F Y" }} - {{ Contest.title }}</h1> > {{ Contest.report|textile }} > </div> > {% endblock %} > > What's the best way to embed an image from my gallery into the Contest.report > variable? > > I'm looking to do something like: > > {% ShowImage 1 200 400 left %} > > where > - ShowImage is a template tag, > - 1 is the serial of the image to show, > - 200 is the height > - 400 is the width > - left is the align value so text wraps around it > > I can generate a thumbnail of the right size, and I can find the image > location from the database, but what's the best way of replacing this > template tag with the appropriate html? Can I write a filter which "runs" > template tags?
Well... Django's template system works for any text format, so yes, you could takes that text, compiled it as a template, then render the template passing it the needed context. Since this might a bit heavy on processing, you may want to do cache the result in the database instead of recomputing the whole damn thing on each and every display... > Or should I be scanning the text for "{% ShowImage" and then > reading values until the next "%}" in a custom filter? Why reinvent the wheel ? Django's template system already has a parser. Now if you don't want to use the above solution, you could also use a more Textile-like syntax (to be invented...), then use a simple regexp in your filter to replace this syntax with the appropriate dynamically generated html snippet. My 2 cents... > Thoughts? > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---