{% extends "package/resource_edit_base.html" %} {% block scripts %} {{ super() }} {% asset 'resourcedictionary/dictionary_form' %} {% endblock %} {% import 'macros/form.html' as form %} {% block subtitle %}{{ h.dataset_display_name(pkg) }} - {{ h.resource_display_name(res) }}{% endblock %} {% block primary_content_inner %} {% set action = h.url_for('resource_dictionary.dictionary', id=pkg.name, resource_id=res.id) %}
{{ form.errors(errors=error_summary) }} {% block dictionary_form %} {% for field in fields %} {% snippet "ajax_snippets/dictionary_field.html", field=field, position=loop.index, total_records=total_records %} {% endfor %} {% endblock %} {% if not total_records %} {{_('Add Field')}} {% endif %}
{% endblock %}