{% extends 'base.html' %} {% from "macros.html" import render_field %} {% block title %}Edit Catalog{% endblock %} {% block content_title %}Edit Catalog{% endblock %} {% block content_description %}Edit a catalog of documents in Evie's Library. When you change chunking of embedding information, you'll need to manually refresh the library if you want immediate impact. {% endblock %} {% block content %}
{{ form.hidden_tag() }} {% set disabled_fields = [] %} {% set exclude_fields = [] %} {% for field in form %} {{ render_field(field, disabled_fields, exclude_fields) }} {% endfor %}
{% endblock %} {% block content_footer %} {% endblock %}