{% extends "base.html" %} {% block title %}{{ config.METAREGISTRY_TITLE }}{% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block container %}
Registry

The registry contains metadata about ontologies, controlled vocabularies, and resources including their preferred prefix, name, description, homepage, mappings to other registries, and more. An alternate view over the registry by keywords can be found here.

{% if config.METAREGISTRY_RESOURCES_SUBHEADER %} {{ config.METAREGISTRY_RESOURCES_SUBHEADER | safe}} {% endif %}
{% for prefix, resource in registry.items() %} {% set description = resource.get_short_description(use_markdown=True) %} {% endfor %}
Name Prefix Description
{{ resource.get_name() }} {# FIXME adding all bioschemas annotations slows down pretty dramatically #} {# #} {{ prefix }}{% if description %}{{ description }}{% endif %}
{% endblock %}