Maybe I'm missing something here, but what is wrong with this? {% tag_link tag.name %}
The string "tag.name" gets passed to your template tag, you resolve it against the current context when rendering it, and then you have the value and can do whatever you want with it. See [1] for reference. [1] http://docs.djangoproject.com/en/dev/howto/custom-template-tags/#passing-template-variables-to-the-tag On Jul 20, 7:33 pm, phoebebright <phoebebri...@spamcop.net> wrote: > Is there a way to get this to work: > > {% for tag in tags %} > <font size="{{tag.font_size}}">{% tag_link > "{{tag.name}}" %}</font> > {% endfor %} > > The outer loop is using the standard tagging application and the > tag_link is my custom template tag which has a different url depending > on the type of tag. > I don't really want to amend the tagging app, so what is the correct > way of doing this. Extending the template tag class? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---