{% extends 'profiles/base.html' %} {% load bootstrap %} {% load scipost_extras %} {% block breadcrumb_items %} {{ block.super }} {% if form.instance.id %}Update{% else %}Add new{% endif %} Affiliation {% endblock %} {% block pagetitle %}: Affiliation{% endblock pagetitle %} {% block content %}

Add a new Affiliation to your Profile

Don't find the organization you need in our list? Please create a Ticket providing us with the details, we'll get back to you!

{% csrf_token %} {{ form|bootstrap }} {% if form.errors %} {% for field in form %} {% for error in field.errors %}
{{ field.name }} - {{ error|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %} {% endif %}
{% endblock content %} {% block footer_script %} {{ block.super }} {{ form.media }} {% endblock footer_script %}