{% extends "manage/manage_base.html" %} {% load i18n %} {% block left_slot %} {% for property in properties %}
{{property.name}}
{% endfor %} {% endblock %} {% block content %}
{{property.name}} {% trans 'Add Property' %} {% trans 'Delete Property' %}

{% trans 'Property data' %}

{% include "manage/lfs_form.html" %}

{% trans 'Field type' %}

{% trans 'Attention: If the field type is changed all entered product values for this property will be deleted.' %}

{{ type_form.type }}
{% if property.is_select_field %}
{{ options|safe }}
{% endif %} {% if property.is_number_field %}
{{ steps|safe }}
{% endif %}
{% endblock %}