Cant get to show breadcrumbs on generated pages

Hi there,

testing breadcrumbs, on meeting.py i’ve:

def get_context(self, context):
    context.parents = [{"name": "meetings", "title": "Meetings"}]

on meeting.html

{% extends "templates/web.html" %}

{% block title %}
    {{ title }}
{% endblock %}

{% block breadcrumbs %}
    {% include "templates/includes/breadcrumbs.html" %}
{% endblock %}

{% block content %}

Web page for meeting is showing correctly but no breadcrumb, any hint?

Thx