Template tag - list punctuation for a list of items
If you have multiple items in a list and want them to be displayed as human readable list of items, this will add the proper punctuation to generate the text. You'll need to provide a conjugation to the end of the list like "or" or "and"; it defaults to "or". Intended use: `{% for item in items %}{{item}}{% list_punctuation forloop "and" %}{% endfor %}` * If items was `['a']`; the template would return `a`. * If items was `['a', 'b']`; the template would return `a and b`. * If items was `['a', 'b', 'c']`; the template would return `a, b, and c`.