{% extends 'base.html' %} {% block pageTitle %}{{ company.name }}{% endblock %} {% block pageContent %}

{{ company.name }}

{{ company.websiteText }} {% if company.shortRegion %} {{ company.shortRegion }} {% endif %}
{% for headingProperty, headingText in headingPropertyNames %} {% if company.profileContent[ headingProperty ] %}

{{ headingText }}

{{ company.profileContent[ headingProperty ]|safe }}
{% endif %} {% endfor %} {# There are different "levels" of incomplete - if company.isIncomplete is # true then this profile is "really" incomplete, with a warning icon and # everything, so there is no point in showing this section. #} {% if missingHeadings.length and ! company.isIncomplete %}

Missing info

We're missing some information about this company! Here's what else we need:

Want to help? Send us a pull request on GitHub with your changes to this file!

{% endif %} {% endblock %}