{% extends 'generic/object.html' %} {% load validity %} {% load render_table from django_tables2 %} {% block content %}
Poller
Name {{ object.name }}
Connection Type {{ object | colored_choice:"connection_type" }}
Commands {{ object.commands.all | linkify_list }}
{% include 'inc/panels/tags.html' %}
Credentials
{% include 'extras/inc/configcontext_format.html' %}
Public
{% include 'extras/inc/configcontext_data.html' with data=object.public_credentials format=format %}
Private
{% include 'extras/inc/configcontext_data.html' with data=object.private_credentials.encrypted %}
Bound Devices
{% include 'validity/inc/search_form.html' with model='Device' %}
{% render_table table 'inc/table.html' %}
{%include 'inc/paginator.html' with paginator=table.paginator page=table.page%}
{% endblock content %}