{% extends "base.html" %} {% load static %} {% block title %}Products{% endblock %} {% block meta_description %}Explore Radiuma's suite of medical imaging and radiomics software products.{% endblock %} {% block content %}
Software Suite

Our Products

Advanced tools for medical imaging research and radiomics analysis.

Product List

{% if main_products %}
{% for product in main_products %}
{% if product.image %}
{{ product.name }}
{% endif %}

{{ product.name }}

{{ product.short_description }}

{{ product.description }}

Explore {{ product.name }}
{% with subs=product.sub_products.all %} {% if subs %}

Modules

    {% for sub in subs %} {% if sub.is_active %}
  • {{ sub.name }}
  • {% endif %} {% endfor %}
{% endif %} {% endwith %}
{% endfor %}
{% else %}

No products available at this time. Check back soon.

{% endif %}
{% endblock %}