24 lines
795 B
HTML
24 lines
795 B
HTML
{% extends 'base.html' %}
|
|
{% from "macros.html" import render_field %}
|
|
|
|
{% block title %}Add URLs{% endblock %}
|
|
|
|
{% block content_title %}Add URLs{% endblock %}
|
|
{% block content_description %}Add a list of URLs and the corresponding documents to EveAI. In some cases, url's cannot be loaded directly. Download the html and add it as a document in that case.{% 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">Add URL</button>
|
|
</form>
|
|
{% endblock %}
|
|
|
|
|
|
{% block content_footer %}
|
|
|
|
{% endblock %} |