On Sep 9, 4:00 pm, tdelam <tde...@gmail.com> wrote:
> Hey,
>
> I would like to know if I should write a custom template tag or if
> anyone can give me some direction on how to do the following:
>
> 1) User visits a page on a web site, example.org/campaign/businessname
> 2) I capture "businessname" and fetch the details of that user from
> the database and render a page addressed specifically to him/her.
>
> My problem is that we are using TinyMCE to input the content for that
> "businessname". Throughout the body of the content the persons name
> and email address should be rendered on the page, I am looking to do
> something like the following:
>
> Lorem ipsum dolor sit amet, consectetur adipiscing elit.
> {{ business.firstname }}, praesent massa dui, rutrum vel scelerisque
> ut, consequat sed sem. Duis dapibus {{ business.email}}, nisl viverra
> odio eleifend non lacinia odio suscipit. Aliquam vestibulum dui vel
> leo dictum sollicitudin dictum magna bibendum. Pellentesque sed nisl a
> metus ornare rutrum eu sagittis est.
>
> The problem with the above paragraph is that tinymce cannot accept
> template tags. Is there anyway I can use template tags inside tinymce
> content? I am guessing no.. what would be the best approach for this?

A template tag could deal with this. What you would need to do in your
tag would be to instantiate a django.template.Template class with the
content of your field, and render that against the current context.
It's not trivial (you won't be able to use any of the shortcut
decorators) but should be doable.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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 
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