{% extends "base.html" %} {% block title %}Bioregistry{% 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.

{% for prefix, resource in registry.items() %} {% set description = resource.get_description() %} {% endfor %}
Name Prefix Description
{{ resource.get_name() }} {{ prefix }}{% if description %}{{ description }}{% endif %}
{% endblock %}