{% extends "cf/public_access_wrapper.html" %} {% load juntagrico.config %} {% block page_title %}

Rechnungs- und Lieferadresse

{% endblock %} {% block content %} {% if not user.is_authenticated %}

Anmelden

Für {% vocabulary "member_pl" %} von {% config "organisation_name" %} und bestehende Paten
{% csrf_token %}

{% if form.errors %}
Sorry, das ist kein gültiges Login
{% endif %}

Ich bin neu hier

{% endif %}
{% csrf_token %}
{{ funderform.last_name }} {% if funderform.last_name.errors %} Name ungültig {% endif %}
{{ funderform.first_name }} {% if funderform.first_name.errors %} Vorname ungültig {% endif %}
{{ funderform.addr_street }} {% if funderform.addr_street.errors %} Strasse ungültig {% endif %}
{{ funderform.addr_zipcode }} {% if funderform.addr_zipcode.errors %} PLZ ungültig {% endif %}
{{ funderform.addr_location }} {% if funderform.addr_location.errors %} Ort ungültig {% endif %}
{{ funderform.phone }} {% if funderform.phone.errors %} Telefon ungültig {% endif %}
{{ funderform.email }} {% if funderform.email.errors %} E-Mail ungültig {% endif %}
{% if userexists %}
Diese Email-Adresse existiert bereits im System. Bitte benutze das Anmeldeformular ganz oben.
{% endif %}
{% endblock %}