{% extends "layouts/default.html" %} {% block title %} Manage Customers {% endblock title %} {% block stylesheets %} {% endblock stylesheets %} {% block content %} {% if current_user.is_authenticated %} {{ form.hidden_tag() }}
Back

Customer > {{ customer.customer_name }}

0

Current open cases

Current month

0

Last month

0

Current year

0

Last year ()

0

Total

Customer name

{{ customer.customer_name }}

Customer Description

{{ customer.customer_description }}

Customer SLAs

{{ customer.customer_sla }}

Average case duration

days

Contacts

{% for contact in contacts %}
{{ contact.contact_name }}

{% if contact.contact_role %} Role: {{ contact.contact_role }}
{% endif %} {% if contact.contact_email %} Email: {{ contact.contact_email }}
{% endif %} {% if contact.contact_work_phone %} Work phone: {{ contact.contact_work_phone }}
{% endif %} {% if contact.contact_mobile_phone %} Mobile phone: {{ contact.contact_mobile_phone }}
{% endif %} {% if contact.contact_note %} Notes: {{ contact.contact_note }}
{% endif %}

{% endfor %}
{% endif %} {% endblock content %} {% block javascripts %} {% endblock javascripts %}