> I don't know if this exists or not, but I'd like to insert a tag (much > like cycle) that allows the random selection of a string. I'm trying > to randomly assign a class to a <div> to simulate "random image > rotator" type functionality. Something like... > > <div class="{% random class1,class2,class3,class4 %}">
Sounds like you want to make a custom template tag that uses random.choice() to make the choice for you. I haven't tested the code below, but it's a starting point for what you describe: from random import choice from django import template from django.template import resolve_variable class RandomChoiceNode(template.Node): def __init__(self, *choices): self.choices = choices def render(self, context): try: which = choice(self.choices) result = resolve_variable(which, context) return result except template.VariableDoesNotExist: return '' http://www.djangoproject.com/documentation/templates_python/#passing-template-variables-to-the-tag Fiddle accordingly. -tim --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---