{% 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

Customers > {{ customer.customer_name }} (#{{customer.customer_id}})

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 %}
The users below are associated with this customer and have by default access to the customer's related data, including alerts and cases.
#ID Name Login Name Service Account
#ID Name Login Name Service Account
The cases below have been opened for this customer. Click on a case to view its details.
Name Opening date State Owner
Name Opening date State Owner
The assets below have been seen for this customer.
Name Description Type IP Seen in case
Asset name Description Type IP Seen in case
{% endif %} {% endblock content %} {% block javascripts %} {% endblock javascripts %}