Re: How to get children in Django-CMS

2020-03-13 Thread WrapTheCode
I found a solution. Maybe someone else will get help. {% for child in request.current_page.get_child_pages %} > {{ child.get_menu_title }} > {% page_attribute "meta_description" child %} > {% endfor %} > -- You received this message because you are subscribed to the Google Groups "Django users"

How to get children in Django-CMS

2020-03-12 Thread WrapTheCode
Hi i have a problem with displaying children fields in a parent template. For example the parent page is a "Services" and child pages is single service. All i want to do is display all service in a services container. I have had tried: > {% for child in children %} > {{ child.title }} > {{ chil