{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load job_buttons %} {% load helpers %} {% load render_table from django_tables2 %} {% load perms %} {% load plugins %} {% load static %} {% load tz %} {% block header %}
{% with list_url=object|validated_viewname:"list" %}
{% if list_url %}
{% endif%} {% endwith %}
{% block buttons %} {% plugin_buttons object %} {% block extra_buttons %}{% endblock extra_buttons %} {% consolidate_detail_view_action_buttons %} {% endblock buttons %}
{% block masthead %}

{% block title %}{{object.display|default:object}}{% endblock %}

{% endblock masthead %} {% include 'inc/created_updated.html' %}
{% custom_links object %} {% job_buttons object %} {% block panel_buttons %}{% endblock panel_buttons %}
{% endblock header %} {% block content %}
{% block content_left_page %}{% endblock content_left_page %} {% include 'inc/custom_fields/panel.html' with custom_fields=object.get_custom_field_groupings_basic computed_fields_advanced_ui=False %} {% include 'inc/relationships_panel.html' %} {% include 'extras/inc/tags_panel.html' %} {% plugin_left_page object %}
{% block content_right_page %}{% endblock content_right_page %} {% plugin_right_page object %}
{% block content_full_width_page %}{% endblock content_full_width_page %} {% plugin_full_width_page object %}
{% include 'inc/object_details_advanced_panel.html' %} {% block advanced_content_left_page %}{% endblock advanced_content_left_page %}
{% block advanced_content_right_page %}{% endblock advanced_content_right_page %}
{% block advanced_content_full_width_page %}{% endblock advanced_content_full_width_page %}
{% if object.is_contact_associable_model %}
{% csrf_token %}
Contact Associations
{% render_table associated_contacts_table 'inc/table.html' %}
{% with request.path|add:"?tab=contacts"|urlencode as return_url %} {% endwith %}
{% endif %} {% if object.is_dynamic_group_associable_model and perms.extras.view_dynamicgroup %}
Dynamic group membership is cached for performance reasons, therefore this table may not always be up-to-date.
You can refresh the membership of any specific group by navigating to it from the list below or from the Dynamic Groups list view.
You can also refresh the membership of all groups by running the Refresh Dynamic Group Caches job.
{% csrf_token %}
Dynamic Groups
{% render_table associated_dynamic_groups_table 'inc/table.html' %}
{% endif %} {% if object.is_metadata_associable_model and perms.extras.view_objectmetadata %}
{% csrf_token %}
Object Metadata
{% render_table associated_object_metadata_table 'inc/table.html' %}
{% endif %} {% block extra_tab_content %}{% endblock extra_tab_content %}
{% endblock content %} {% block javascript %} {% endblock javascript %}