Inside a django template I’m trying to call the split function on one of the template variables and then get the last element, so I did something like this:
{{ newsletter.NewsletterPath.split('/').-1 }}
Unfortunately, it doesn’t like the split. Some might suggest that I do the split in the view, but I’m not sure how to do that because I need to do it for all of the records. It would be much easier if I could do it in the template. Is there a way to do this?
What do you mean by “it doesn’t like the split”? How does it manifest its dislike?
If I remember correctly, you can not pass any arbitrary arguments to methods, that are called from the django template and the identifiers, that can be used in the templates can only consist of a-z, A-Z, 0-9, underscores and dots (where dots signify lookup: dictionary->attribute->method->list-index).
There are at least four ways to achieve what you want:
selfpopulate the model instances in the view
(or something along these lines)