On 7/4/07, Bryan Veloso <[EMAIL PROTECTED]> wrote: > > 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 %}">
One option is to use the 'random' filter; your context would need to define the list of possible strings: Context({ 'classes': ['class1','class2','class3','class4'] }) but then your template could use: {{ classes|random }} Yours, Russ Magee %-) --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---