{% extends 'generic/object_detail.html' %} {% load helpers %} {% load humanize %} {% block masthead %}

Contract: {% block title %}{{ object }}{% endblock %}

{% endblock masthead %} {% block content_left_page %}
Contract
Name {{ object.name }}
Provider {{ object.provider }}
Start Date {% if object.start %} {{ object.start }} {% else %} — {% endif %}
End Date {% if object.end %} {{ object.end }} {% else %} — {% endif %}
Cost {% if object.cost %} {{ object.cost | intcomma }} {% else %} — {% endif %}
Currency {% if object.currency %} {{ object.currency }} {% else %} — {% endif %}
Support Level {% if object.support_level %} {{ object.support_level }} {% else %} — {% endif %}
Contract Type {% if object.contract_type %} {{ object.contract_type }} {% else %} — {% endif %}
Comments {% if object.comments %}
{{ object.comments|placeholder  }}
{% else %} — {% endif %}
{% endblock %} {% block content_right_page %}
Escalation Contacts
{% if not contacts %} {% endif %} {% for contact in contacts %} {% endfor %}
Name E-Mail Phone Tier
No contacts defined. Click the 'Add PoC' button below to add contacts.
{% if contact.type == "Primary" %} {% endif %} {{ contact.name }} {% if contact.email %} {{ contact.email }} {% else %}—{% endif %} {{ contact.phone|placeholder }} {{ contact.type }}
Service Contract Owner
{% if not owners %} {% endif %} {% for contact in owners %} {% endfor %}
Name E-Mail Phone
No contract owner defined. Click the 'Add Owner' button below to add an owner.
{{ contact.name }} {% if contact.email %} {{ contact.email }} {% else %}&mdash{% endif %} {{ contact.phone|placeholder }}
{% endblock %}