{% extends "aristotle_mdr/base.html" %} {% load util_tags %} {% 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|bleach }}
{% endfor %}
{% endif %} {% if download_extensions %}

The following download formats are available in this registry

{% for ext in download_extensions %} {{ ext.label }}

{{ ext.description }}

{% endfor %} {% endif %} {% else %} No extensions have been installed on this site. {% endif %} {% endblock %}