{% extends "base.html" %} {% load static %} {% block title %}{{ main_product.name }}{% endblock %} {% block meta_description %}{{ main_product.short_description }}{% endblock %} {% block content %}
Product

{{ main_product.name }}

{{ main_product.short_description }}

About {{ main_product.name }}

{% if main_product.image %} {{ main_product.name }} {% else %} {{ main_product.name }} logo {% endif %}
{{ main_product.rendered_description }}
{% with subs=main_product.sub_products.all %} {% if subs %}
Modules

{{ main_product.name }} Modules

Explore the different modules and capabilities within {{ main_product.name }}.

{% for sub in subs %} {% if sub.is_active %} {% if sub.image %}
{{ sub.name }}
{% endif %}

{{ sub.name }}

{{ sub.short_description }}

Learn More
{% endif %} {% endfor %}
{% endif %} {% endwith %} {% endblock %}