{% load i18n %}

{% trans "Local images" %}

{% trans "Your are here" %}: {% trans "Portal" %} {% for obj in objs %} > {{ obj.title }} {% endfor %} {% trans "Current Object" %}
{% trans "Children" %}
{% for child in children %}
{% if child.display %} {{ child.title }} {{ child.display }} {% else %} {{ child.title }} {% endif %}
{% empty %}
{% trans "There are no children" %}
{% endfor %}
{% for image in images %} {% empty %} {% endfor %}
{% trans "Images" %}
{{ image.title }}
{% trans "There are no local images yet" %}
{% trans "Preview" %}
{% if selected_image %} {% trans "Prview" %} {% else %} {% trans "No image selected" %} {% endif %}

{% trans "Upload image to current object: " %} {{ current_obj.title }}

{% if display_upload %}
{% csrf_token %}
{% else %} {% trans "You have to save content object before you can upload images for it." %} {% endif %}