- Introduction of retrievers - Ensuring processing information is collected from Catalog iso Tenant - Introduction of a generic Form class to enable dynamic fields based on a configuration - Realisation of Retriever functionality to support dynamic fields
23 lines
956 B
HTML
23 lines
956 B
HTML
{% extends 'base.html' %}
|
|
{% from 'macros.html' import render_selectable_table, render_pagination %}
|
|
|
|
{% block title %}Retrievers{% endblock %}
|
|
|
|
{% block content_title %}Retrievers{% endblock %}
|
|
{% block content_description %}View Retrieers for Tenant{% endblock %}
|
|
{% block content_class %}<div class="col-xl-12 col-lg-5 col-md-7 mx-auto"></div>{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<form method="POST" action="{{ url_for('document_bp.handle_retriever_selection') }}">
|
|
{{ render_selectable_table(headers=["Retriever ID", "Name", "Type", "Catalog ID"], rows=rows, selectable=True, id="retrieverssTable") }}
|
|
<div class="form-group mt-3">
|
|
<button type="submit" name="action" value="edit_retriever" class="btn btn-primary">Edit Retriever</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block content_footer %}
|
|
{{ render_pagination(pagination, 'document_bp.retrievers') }}
|
|
{% endblock %} |