{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load humanize %} {% block title %}{{ object }}{% endblock %} {% block header %}
{% if perms.change %} Edit {% endif %} {% if perms.delete %} Delete {% endif %}

Contract: {{ object }}

{% include 'inc/created_updated.html' with obj=object %}
{% custom_links object %}
{% endblock %} {% block content %}
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 %}
{% include 'inc/custom_fields_panel.html' %} {% include 'inc/relationships_panel.html' %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all %}
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 %}