{% extends "billy/base.html" %} {% load url from future %} {% load humanize %} {% load staticfiles %} {% load billy_utiltags %} {% load url from future %} {% block title %}Data Quality{% endblock %} {% block script %} {% endblock %} {% block content %}

Found {{names|length}} distinct names.

{% for name, ids in names.items %} {% endfor %}
Name Number of times seen
{{name}} {% for collection, id in ids|slice:":10" %} {{id}} {% endfor %}
{% endblock %}