{% extends "base.html" %} {% block title %}Entreprises — GMAO Collège{% endblock %} {% block content %}

Entreprises

Nouvelle+
{% for company in companies %}
{{ company.name }} {% if not company.is_active %}Inactive{% endif %}
{% if company.trade_name %}

{{ company.trade_name }}

{% endif %}

{{ company.specialty }}

{% if company.contact_name %}

{{ company.contact_name }}

{% endif %} {% if company.contact_phone %}

{{ company.contact_phone }}

{% endif %}
{% endfor %}
{% endblock %}