upload/catalog/view/template/account/edit.html
{{ text_your_details }} {{ entry_firstname }}
{{ entry_lastname }}
{{ entry_email }}
{% if config_telephone_status %} {{ entry_telephone }}
{% endif %} {% for custom_field in custom_fields %} {% if custom_field.type == 'select' %} {{ custom_field.name }} {{ text_select }} {% for custom_field_value in custom_field.custom_field_value %} {{ custom_field_value.name }} {% endfor %}
{% endif %} {% if custom_field.type == 'radio' %} {{ custom_field.name }}
{% for custom_field_value in custom_field.custom_field_value %} {{ custom_field_value.name }} {% endfor %}
{% endif %} {% if custom_field.type == 'checkbox' %} {{ custom_field.name }}
{% for custom_field_value in custom_field.custom_field_value %} {{ custom_field_value.name }} {% endfor %}
{% endif %} {% if custom_field.type == 'text' %} {{ custom_field.name }}
{% endif %} {% if custom_field.type == 'textarea' %} {{ custom_field.name }} {% if account_custom_field[custom_field.custom_field_id] %}{{ account_custom_field[custom_field.custom_field_id] }}{% else %}{{ custom_field.value }}{% endif %}
{% endif %} {% if custom_field.type == 'file' %} {{ custom_field.name }}
{{ button_upload }}
{% endif %} {% if custom_field.type == 'date' %} {{ custom_field.name }}
{% endif %} {% if custom_field.type == 'time' %} {{ custom_field.name }}
{% endif %} {% if custom_field.type == 'datetime' %} {{ custom_field.name }}
{% endif %} {% endfor %}
{{ button_continue }}