{% extends "aristotle_mdr/base.html" %} {% block content %}

{% block title %}Aristotle Extensions{% endblock %}

{% if content_extensions or download_extensions %}

Below is a complete listing of the extensions that are used in {{ config.SITE_NAME }}, click any of the headings below for more information.

{% if content_extensions %}

The following content extensions are available in this registry

{% for ext in content_extensions %}
{% if ext.about_url %} {{ ext.verbose_name }} {% else %} {{ ext.verbose_name }} {% endif %}
{{ ext.description | safe }}
{% endfor %}
{% endif %} {% if download_extensions %}

The following download formats are available in this registry

{% for ext in download_extensions %} {% if ext.about_url %} {{ ext.app.verbose_name }} {% else %} {{ ext.label }} {% endif %}

{{ ext.description | safe}}

{% for d in ext.downloads %}
{{ d.1 }}
{{ d.4 | safe}}
{% endfor %}
{% endfor %} {% endif %} {% else %} No extensions have been installed on this site. {% endif %} {% endblock %}