[Answer]-Best way to list subcategories on a Django template (ManyRelatedManager not Iterable)

1👍

Like the error says, it’s a manager, so you need to use manager methods on it: {% for category in event.categories.all %}.

Leave a comment