Is there a simple way to limit the chars on object.variable output? here is the code...
# templatetag # from django import template from aatg.testimonial.models import Testimonial register = template.Library() import random def random_testimonial(): return {'object': Testimonial.objects.get(id=random.randint(1, Testimonial.objects.count()))} register.inclusion_tag('testimonial.html')(random_testimonial) # template # <p>{{ object.quote }}…</p> <p>{{ object.first_name }} {{ object.last_name }}<br /> <em>{{ object.title }}</em><br /> <strong>{{ object.company }}</strong></p> I would like to limit {{ testimonial.quote }} to 200 characters. Is it possible to do it in the template with a split()? Thanks Matt --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---