{% extends 'products/base.html' %} {% load static %} {% block title %} Companies {% endblock %} {% block content %}

Companies

List of companies providing the CE marked artificial intelligence solutions as listed in Products
{{company_total}} results
{% for company in companies %}
{% if company.logo %} Logo {% endif %}
HQ: {{company.hq}}
Founded: {{company.founded}}

{{company.description_short}}

Products:

{% for product in company.product_set.all %}
{{product.product_name}}
{% endfor %}
{% endfor %}
{% endblock %}