{% extends "base.html" %} {% block content %}
FHIRFLARE Ig Toolkit

{{ title }}

View details of the processed FHIR Implementation Guide.

{{ title }}

Back to Package List
{% if processed_ig %}
Package Details
Package Name
{{ processed_ig.package_name }}
Package Version
{{ processed_ig.version }}
Processed At
{{ processed_ig.processed_date.strftime('%Y-%m-%d %H:%M:%S UTC') }}
{% if config.DISPLAY_PROFILE_RELATIONSHIPS %}
Profile Relationships
Complies With
{% if complies_with_profiles %}
    {% for profile in complies_with_profiles %}
  • {{ profile }}
  • {% endfor %}
{% else %}

No profiles declared as compatible.

{% endif %}
Required Dependent Profiles (Must Also Validate Against)
{% if imposed_profiles %}
    {% for profile in imposed_profiles %}
  • {{ profile }}
  • {% endfor %}
{% else %}

No imposed profiles.

{% endif %}
{% endif %}
Resource Types Found / Defined
{% if profile_list or base_list %}

MS = Contains Must Support Elements

{% if profile_list %}
Profiles Defined ({{ profile_list|length }}):
{% else %}

No profiles defined.

{% endif %} {% if base_list %}

Examples = - Examples will be displayed when selecting Base Types if contained in the IG

Base Resource Types Referenced ({{ base_list|length }}):
{% else %}

No base resource types referenced.

{% endif %} {% else %}

No resource type information extracted or stored.

{% endif %}
{% else %} {% endif %}
{% endblock %}