{% 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

Summary text.

{% for (source_prefix, target_prefix), count in counter.most_common() %} {% endfor %}
Source Prefix Target Prefix Count
{{ source_prefix }} {{ target_prefix }} {{ "{:,d}".format(count) }}
{% endblock %}