{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% block breadcrumbs %} {{ block.super }} {% if object.group %} {% endif %} {% endblock breadcrumbs %} {% block content %}
Contact
Group {{ object.group|linkify|placeholder }}
Name {{ object.name }}
Title {{ object.title|placeholder }}
Phone {% if object.phone %} {{ object.phone }} {% else %} None {% endif %}
Email {% if object.email %} {{ object.email }} {% else %} None {% endif %}
Address {{ object.address|linebreaksbr|placeholder }}
Link {% if object.link %} {{ object.link }} {% else %} {{ ''|placeholder }} {% endif %}
Assignments {{ assignment_count }}
{% include 'inc/panels/comments.html' %} {% plugin_left_page object %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% plugin_right_page object %}
Assignments
{% render_table assignments_table 'inc/table.html' %} {% include 'inc/paginator.html' with paginator=assignments_table.paginator page=assignments_table.page %}
{% plugin_full_width_page object %}
{% endblock %}