{% extends "base.html" %} {% block crumbs %} {{ crumbs.nav(request=request, database=database, table=table) }} {% endblock %} {% block extra_head %} {% endblock %} {% block title %}Enrich data in {{ table }}: {{ enrichment.name }}{% endblock %} {% block content %}

Enrich data in {{ table }}

{{ "{:,}".format(stuff.count) }} row{% if stuff.count != 1 %}s{% endif %} selected {{ stuff.human_description_en }}

{{ enrichment.name }}

{{ enrichment.description }}

{% if enrichment_form %}
{% for field in enrichment_form %}
{{ field }} {% if field.errors %}
    {% for error in field.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% if field.description %}

{{ field.description }}

{% endif %}
{% endfor %}
{% endif %}

{% endblock %}