Re: Simple Template Syntax Question: ljust

2006-09-25 Thread Martin Glueck
> I've tried... > > {{product.title | ljust 40}} > > and other formats but can't get it to work... You can use the slice filter: {{product.title | slice:":40" }} or if you what the to truncate only at workbrakes, you can use the truncatewaords filter: {{product.title | truncate:"5" }} Marti

Re: Simple Template Syntax Question: ljust

2006-09-25 Thread Tim Shaffer
It should be {{ product.title|ljust:"40" }} --~--~-~--~~~---~--~~ 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, s

Simple Template Syntax Question: ljust

2006-09-25 Thread Tom Smith
Can someone show me how to get x number of chars from a variable in a template please... I've tried... {{product.title | ljust 40}} and other formats but can't get it to work... thanks --~--~-~--~~~---~--~~ You received this message because you are subs