{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% block extrahead %} {% load leaflet_tags %} {% leaflet_js %} {% leaflet_css %} {% endblock %} {% block title %} {% trans "Update Client" %} {% endblock %} {% block message %}
{% trans "Tip" %}

{% trans "In update mode, each step can be saved individually" %}.

{% endblock %} {% block content %}
{% include 'client/update/step.html' with url='member_update_basic_information' step='basic_information' icon='male' name=_('Personal') description=_('First name, last name, ...') %} {% include 'client/update/step.html' with url='member_update_address_information' step='address_information' icon='home' name=_('Address') description=_('Street number, city, ...') %} {% include 'client/update/step.html' with url='member_update_relationships' step='relationships' icon='treatment' name=_('Relationships') description=_('Referents, emergency contacts, ...') %} {% include 'client/update/step.html' with url='member_update_payment_information' step='payment_information' icon='payment' name=_('Payment') description=_('Payment method, card, ...') %} {% include 'client/update/step.html' with url='member_update_dietary_restriction' step='dietary_restriction' icon='food' name=_('Preferences') description=_('Deliveries, restrictions, ...') %}
{% csrf_token %} {% if form.errors %}
{% trans 'Required information missing' %}

{% trans 'Please review the form to make sure that all required fields are filled.' %}

{% if not form.forms %} {{ form.errors }} {% endif %}
{% endif %} {% block subcontent %} {% endblock %} {% trans "Back" %}
{% endblock %} {% block extrajs %} {% if debug %} {% else %} {% endif %} {% endblock %}