{% extends "base.html" %} {% import "bootstrap4/form.html" as wtf %} {% import "bootstrap4/utils.html" as util %} {% block title %}Biomappings Summary{% endblock %} {% block content %}
{{ util.render_messages(dismissible=True, container=False) }}
Biomappings Summary

This page creates a top-level summary of the current query, broken down by source and target prefixes.

{% for source_prefix, target_prefix, count, link in rows %} {% endfor %}
Source Prefix Target Prefix Count Link
{{ source_prefix }} {{ target_prefix }} {{ "{:,d}".format(count) }} Go!
{% endblock %}