- 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
24 lines
703 B
HTML
24 lines
703 B
HTML
{% extends 'base.html' %}
|
|
{% from "macros.html" import render_field %}
|
|
|
|
{% block title %}Retriever Registration{% endblock %}
|
|
|
|
{% block content_title %}Register Retriever{% endblock %}
|
|
{% block content_description %}Define a new retriever (for a catalog){% 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 Retriever</button>
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% block content_footer %}
|
|
|
|
{% endblock %}
|