{% extends "base.html" %} {% block title %}Test SMART Configuration - {{ site_name }}{% endblock %} {% block content %}

Test SMART Configuration

Fetch and display the SMART on FHIR configuration from /oauth2/.well-known/smart-configuration.

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% if config_data %}
SMART Configuration
{{ config_data | tojson(indent=2) }}
                        
{% else %}

No configuration data available. Please try again.

{% endif %}
{% endblock %}