26 lines
819 B
HTML
26 lines
819 B
HTML
{% 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 method="post">
|
|
{{ form.hidden_tag() }}
|
|
{% set disabled_fields = [] %}
|
|
{% set exclude_fields = [] %}
|
|
{% for field in form %}
|
|
{{ render_field(field, disabled_fields, exclude_fields) }}
|
|
{% endfor %}
|
|
<button type="submit" class="btn btn-primary">Register Catalog</button>
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% block content_footer %}
|
|
|
|
{% endblock %}
|