{% extends "site_base.html" %} {% load staticfiles %} {% load i18n %} {% load bootstrap_tags %} {% block head_title %}{% trans "Maintain Exchange Types" %}{% endblock %} {% block extra_head %} {% endblock %} {% block body_class %}exchange{% endblock %} {% block body_base %}
{% include "_messages.html" %}
{% trans "Maintain Exchange Types / Patterns" %}    {% trans "Change Resource Type Facets" %}

{% trans "New Exchange Type" %}:

{% csrf_token %} Use Case: {{ new_form.use_case }} Name: {{ new_form.name }}
(After creating your exchange type, please click on it below to finish defining it.)   Legend:   (!) = NoTree   ,   ! = NoInherit   ,   + = NewResource  

{% trans "Incoming / Supply Exchange Types" %}:

    {% for ext in supply_exchange_types %}
  • {% if ext.transfer_types_creating %} + {% endif %} {% if not ext.transfer_types_inheriting %} ! {% endif %} {% if not ext.ocp_record_type %} (!) {% endif %} {{ ext }} {% if ext.is_deletable %}
    {% csrf_token %}
    {% endif %} {% if ext.context_agent %} ({{ ext.context_agent }}) {% endif %}
  • {% endfor %}

{% trans "Internal Exchange Types" %}:

    {% for ext in internal_exchange_types %}
  • {% if ext.transfer_types_creating %} + {% endif %} {% if not ext.transfer_types_inheriting %} ! {% endif %} {% if not ext.ocp_record_type %} (!) {% endif %} {{ ext }} {% if ext.is_deletable %}
    {% csrf_token %}
    {% endif %} {% if ext.context_agent %} ({{ ext.context_agent }}) {% endif %}
  • {% endfor %}

{% trans "Outgoing / Demand Exchange Types" %}:

    {% for ext in demand_exchange_types %}
  • {% if ext.transfer_types_creating %} + {% endif %} {% if not ext.transfer_types_inheriting %} ! {% endif %} {% if not ext.ocp_record_type %} (!) {% endif %} {{ ext }} {% if ext.is_deletable %}
    {% csrf_token %}
    {% endif %} {% if ext.context_agent %} ({{ ext.context_agent }}) {% endif %}
  • {% endfor %}
{% endblock %} {% block extra_script %} {% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}