On Feb 5, 7:51 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> Hello,
>
> I've made a tag with I want to call with a function name and parameter
> like this:
>
> {% tag "delete_wiki_entry" "Delete" "Are you sure you want to delete
> this wikiboard entry?" "delete_wikientry({{entry.name}})" %
>
> {{entry.name}} doesn't get replaced by the correct value, how can I do
> this? Is it possible?
Yes. You could revise your tag to accept parameters in this format:
{% tag "delete_wiki_entry" "Delete" "Are you sure you want to delete
this wikiboard entry?" "delete_wikientry(%s)" entry.name %}
Now, in your tag's Python code, you can merge the last two parameters
like this:
merged_param = p4 % p5
The key is to pass entry.name as above (without quotes or braces).
Django's template infrastructure will resolve it for you.
-Rajesh D
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---