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

Retrieve & Split Data

Retrieve FHIR bundles from a server, then download as a ZIP file. Split uploaded or retrieved bundle ZIPs into individual resources, downloaded as a ZIP file.

Retrieve Bundles

{% if form.errors %}

Please correct the following errors:

    {% for field, errors in form.errors.items() %}
  • {{ form[field].label.text }}: {{ errors|join(', ') }}
  • {% endfor %}
{% endif %}
{{ form.hidden_tag() }}
{{ form.fhir_server_url(class="form-control", id="fhirServerUrl", style="display: none;", placeholder="e.g., https://fhir.hl7.org.au/aucore/fhir/DEFAULT", **{'aria-describedby': 'fhirServerHelp'}) }}
Toggle to use local HAPI (/fhir proxy) or enter a custom FHIR server URL.
{# Authentication Section (Shown for Custom URL) #} {# Checkbox Row #}
{{ render_field(form.validate_references, id='validate_references_checkbox') }}
Retrieval Log
Retrieval output will appear here...

Split Bundles

{{ form.hidden_tag() }}
{{ render_field(form.split_bundle_zip, class="form-control") }}
Splitting Log
Splitting output will appear here...
{% endblock %}