{% 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" %} | {% if object.field %} {{ object.field.name|title }} {% endif %} |
{% 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 }} |
{% trans 'Date and time' %} | {% trans 'Subject' %} | {% trans 'Activity type' %} | {% trans 'Direction' %} | {% trans 'Duration' %} | {% trans 'Comments' %} | |
---|---|---|---|---|---|---|
{{ activity.is_important_display|safe }} | {{ activity.datetime_display }} | {{ activity.subject }} | {{ activity.activity_type_display|safe }} | {{ activity.direction_display|safe }} | {{ activity.duration_display }} | {{ activity.comments_display }} |
{% trans 'There is no activity related to this prospect yet.' %}
{% endif %} {% endblock %}