{% extends "base.html" %} {% from "_form_helpers.html" import render_field %} {% block content %}
FHIRFLARE IG Toolkit

{{ title }}

Upload FHIR test data (JSON, XML, or ZIP containing JSON/XML) to a target server. The tool will attempt to parse resources, determine dependencies based on references, and upload them in the correct order. Optionally validate resources before uploading.

Upload Configuration

{% if form.errors %}

Please correct the following errors:

    {% for field, errors in form.errors.items() %}
  • {{ form[field].label.text }}: {{ errors|join(', ') }}
  • {% endfor %}
{% endif %}
{{ form.csrf_token }} {{ render_field(form.fhir_server_url, class="form-control form-control-lg") }}
{{ render_field(form.auth_type, class="form-select") }}
{{ render_field(form.test_data_file, class="form-control") }} Select one or more .json, .xml files, or a single .zip file containing them.
{{ render_field(form.validate_before_upload) }} It is suggested to not validate against more than 500 files
{{ render_field(form.upload_mode, class="form-select") }}
{{ render_field(form.use_conditional_uploads) }}
{{ render_field(form.error_handling, class="form-select") }}

Processing Log & Results

Processing output will appear here...
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}