{% extends "base.html" %} {% block title %}{{ app.name }}{% endblock %} {% block content %}
{% if app.logo_url %} {{ app.name }} logo {% else %} No Logo {% endif %}

{{ app.name }}

{{ app.developer }}
{% if app.website %} Website {% else %} {% endif %} {% if app.launch_url %} Try App {% endif %}

{% if app.app_images %} {% else %} No Image {% endif %}
Description

{{ app.description or 'No description provided.' }}

Contact Email

{{ app.contact_email or 'Not specified.' }}

Website

{% if app.website %} {{ app.website }} {% else %} Not specified. {% endif %}

{% if app.website %}
Security and Privacy Policy

{{ app.website }}/security-and-privacy

{% endif %}
Launch URL

{{ app.launch_url }}

Designed For

{% if app.designed_for %} {{ app.designed_for.name }} {% else %} Not specified. {% endif %}

FHIR Compatibility
<.ttf class="small-hr">

{% if app.fhir_compatibility %} {{ app.fhir_compatibility.name }} {% else %} Not specified. {% endif %}

OS Support

{% if app_os_supports %} {% for os in app_os_supports %} {{ os.name }}{% if not loop.last %}, {% endif %} {% endfor %} {% else %} Not specified. {% endif %}

Categories

{% if app_categories %} {% for category in app_categories %} {{ category.name }}{% if not loop.last %}, {% endif %} {% endfor %} {% else %} Not specified. {% endif %}

Licensing & Pricing

{% if app.licensing_pricing %} {{ app.licensing_pricing.name }} {% else %} Not specified. {% endif %}

{% if current_user.is_authenticated and (current_user.is_admin or current_user.id == app.user_id) %}
Edit App
{% endif %}
Report Listing
{% endblock %}