Is there a simple way to limit the char output of {{ object.quote }} to 200 chars, a preview only. Can this be done in the template itself or should it be done by spitting the contents of quote into 2 fields during admin post processing?
here is the code # templatetag # from django import template from company.testimonial.models import Testimonial register = template.Library() import random def get_ran_obj(): return {'object': Testimonial.objects.get(id=random.randint(1, Testimonial.objects.count()))} register.inclusion_tag('testimonial.html')(get_ran_obj) # template # <p>{{ object.quote }}…</p> <p>{{ object.first_name }} {{ object.last_name }}<br /> <em>{{ object.title }}</em><br /> <strong>{{ object.company }}</strong></p> 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 -~----------~----~----~----~------~----~------~--~---