{% extends 'admin/detail_form.html' %}
{% load i18n click_to_call %}
{% block content %}
{{ obj.name }} ({{ obj.organization_type.name }})
|
{% trans 'Name' %} |
{{ obj.name }} |
{% trans 'Vat Number' %} |
{{ obj.vat_number }} |
{% trans 'Ssn' %} |
{{ obj.ssn }} |
{% trans 'Phone' %} |
{% click_to_call obj.phone %} |
{% trans 'Phone2' %} |
{% click_to_call obj.phone2 %} |
{% trans 'Fax' %} |
{{ obj.fax }} |
{% trans 'Email' %} |
{{ obj.email }} |
{% trans 'Contacts' %}
|
{% trans 'Status' %} |
{% trans 'Role' %} |
{% trans 'Name' %} |
{% trans 'Phone' %} |
{% trans 'Mobile' %} |
{% trans 'Fax' %} |
{% trans 'Email' %} |
{% trans 'LDAP' %} |
{% for c in obj.contacts.all %}
{{ c.get_status_display }} |
{{ c.role.name }} |
{{ c.get_full_name }} |
{% click_to_call c.phone %} |
{% click_to_call c.mobile %} |
{{ c.fax }} |
{{ c.email }} |
{{ c.ldap }} |
{% endfor %}
{% endblock %}