{% load static %} {% load i18n %} {% load bloomerp %}
add
{% for row in object.content_layout.rows %}
{{ row.title }}
{% for column in row.columns %}
{% for item in column.items %} {% if render_type == 'link' %} {% with item|get_link_by_id as link %} {% if link %}
{% if link.is_absolute_url %} {{ link.name }} {% else %} {{ link.name }} {% endif %}
{% endif %} {% endwith %} {% elif render_type == 'widget' %} {% with item|get_widget_by_id as widget %} {% if widget %} {% endif %} {% endwith %} {% endif %}
{% endfor %}
{% endfor %}
{% endfor %}