{% extends 'intranet/model_detail.html' %}
{% load i18n intranet_extra intranet_values_extras %}
{% load url from future %}
{% block title_content %}{{ verbose_name|capfirst }} : {{ object|upper }}{% endblock %}
{% block content %}
| {% trans "General" %} |
| {% trans "Company name" %} | {{ object.company_name|upper }} |
| {% trans "SIRET code" %} | {{ object.siret_code|siret }} |
| {% trans "Field" %} | {{ object.field.name|title }} |
| {% trans "Contacts" %} |
| {% trans "Company head" %} |
{% if object.last_name == "" %}
{{object.first_name|title }}
{% else %}
{{ object.title|title }} {{object.first_name|title }} {{ object.last_name|upper }}
{% endif %}
|
| {% trans "Profession" %} | {{ object.profession|title }} |
| {% trans "Phone" %} | {{ object.phone_number|phone }} |
| {% trans "E-mail" %} | {{ object.e_mail }} |
| {% trans "Address" %} |
| {% trans "Street" %} | {{ object.street }} |
| {% trans "Postal code" %} | {{ object.postal_code }} |
| {% trans "City" %} | {{ object.city|title }} |
{% endblock %}