{% extends "base.html" %} {% block title %}{{ app.name }}{% endblock %} {% block content %}
{{ app.description or 'No description provided.' }}
{{ app.contact_email or 'Not specified.' }}
{% if app.website %} {{ app.website }} {% else %} Not specified. {% endif %}
{% if app.designed_for %} {{ app.designed_for.name }} {% else %} Not specified. {% endif %}
{% if app.fhir_compatibility %} {{ app.fhir_compatibility.name }} {% else %} Not specified. {% endif %}
{% if app_os_supports %} {% for os in app_os_supports %} {{ os.name }}{% if not loop.last %}, {% endif %} {% endfor %} {% else %} Not specified. {% endif %}
{% if app_categories %} {% for category in app_categories %} {{ category.name }}{% if not loop.last %}, {% endif %} {% endfor %} {% else %} Not specified. {% endif %}
{% if app.licensing_pricing %} {{ app.licensing_pricing.name }} {% else %} Not specified. {% endif %}