{% load i18n %} {% load lfc_tags %}

{% trans 'Children' %}

{% ifhasperm edit %}
{% if children %} {% if display_positions %} {% endif %} {% for child in children %} {% if display_positions %} {% endif %} {% endfor %}
{% trans 'Position' %} {% trans 'Title' %} {% trans 'State' %} {% trans 'Type' %} {% trans 'Manage' %}
{{ child.title }} {% trans child.get_state.name %} {% trans child.get_content_type %} {% if display_positions %} {% if not forloop.first %} {% endif %} {% if not forloop.last %} {% else %} {% endif %} {% endif %}
{% if display_paste %} {% endif %}
{% else %}
{% trans 'There are no children' %}
{% if display_paste %}
{% endif %} {% endif %}
{% else %} {% if children %} {% for child in children %} {% endfor %}
{% trans 'Title' %} {% trans 'State' %} {% trans 'Type' %} {% trans 'Manage' %}
{{ child.title }} {{ child.get_state.name }} {{ child.get_content_type }}
{% else %}
{% trans 'There are no children' %}
{% endif %} {% endifhasperm %}