There is such a structure:
How can bread crumbs be realized?
I don't understand your question
if you still understand, then you need to do something in the template (written in pseudocode, suspiciously similar to django):
{{ objects.get(id=(objects.get(id=id).id_parent)).title }} > {{ objects.get(id=id).title }}
if there are more than two levels, you can generate it recursively from the end
Source: https://ru.stackoverflow.com/questions/196236/
All Articles