vote up 1 vote down star

If fruits is the list ['apples', 'oranges', 'pears'],

is there a quick way using django template tags to produce "apples, oranges, and pears"?

I know it's not difficult to do this using a loop and {% if counter.last %} statements, but because I'm going to use this repeatedly I think I'm going to have to learn how to write custom tags filters, and I don't want to reinvent the wheel if it's already been done.

As an extension, my attempts to drop the Oxford Comma (ie return "apples, oranges and pears") are even messier.

flag

Why aren't you using the existing join template tag? – S.Lott Aug 6 at 10:21
@S.Lott: I didn't spot the join template tag when I looked through the list on the docs page. Oops. Having said that, the next stage is to wrap each item in the list in a hyperlink, for which I think I'll need to write a filter. – Alasdair Aug 6 at 11:50
If you're using links to your Django URL's, you'll need to use the {% url %} tag. The {% for %} loop suddenly looks much more appealing. "Repeatedly" often means your templates need to {% include %} common features. – S.Lott Aug 6 at 11:58

3 Answers

vote up 1 vote down check

I would suggest a custom django templating filter rather than a custom tag -- filter is handier and simpler (where appropriate, like here). {{ fruits | joinby:", " }} looks like what I'd want to have for the purpose... with a custom joinby filter:

def joinby(value, arg):
    return arg.join(value)

which as you see is simplicity itself!

link|flag
I wasn't aware of the distinction between tags and filters. Whereas the custom tags seem slightly daunting when I look at the documentation, filters appear to be simpler, and exactly what I need in this case. Thanks! – Alasdair Aug 6 at 3:01
vote up 0 vote down

Here's the filter I wrote to solve my problem:

def join_with_commas(obj_list):
    """Takes a list of objects and returns their unicode representations,
    seperated by commas and with 'and' between the penultimate and final items
    For example, for a list of fruit objects:
    [<Fruit: apples>,<Fruit: oranges>,<Fruit: pears>] -> 'apples, oranges and pears'
    """

    l=len(obj_list)
    if l==1:
        return obj_list[0].__unicode__()
    else:    
        return ", ".join(_.__unicode__() for _ in obj_list[:l-1]) \
                + " and " + obj_list[l-1].__unicode__()

To use it in the template: {{ fruits | join_with_commas }}

link|flag
vote up 1 vote down

First choice: use the existing join template tag.

http://docs.djangoproject.com/en/dev/ref/templates/builtins/#join

Here's their example

{{ value|join:" // " }}

Second choice: do it in the view.

fruits_text = ", ".join( fruits )

Provide fruits_text to the template for rendering.

link|flag
I might require other lists (eg vegetables_text), and I may use these lists in lots of views, so I'd rather have a solution that only requires me to alter the templates. One of the reasons I was thinking about writing a custom tag is that I can use Python - join is definitely more elegant than for loops. – Alasdair Aug 6 at 2:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.