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

{% trans 'Children' %}

{% ifhasperm edit %}
{% if children %} {% for child in children %} {% endfor %}
{% trans 'Position' %} {% trans 'Title' %} {% trans 'State' %} {% trans 'Type' %} {% trans 'Manage' %}
{{ child.title }} {{ child.get_state.name }} {{ child.get_content_type }} {% trans 'Edit' %} {% trans 'View' %}
{% if display_paste %} {% endif %} {% trans "Processing ..." %}
{% 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 }} {% trans 'Edit' %} {% trans 'View' %}
{% else %}
{% trans 'There are no children' %}
{% endif %} {% endifhasperm %}