Request

Raw
{{ operation.raw_request | linebreaksbr }}
{% block request %} {% endblock request %}

Response

Raw
{{ operation.raw_result | linebreaksbr }}
{% block response %}

Status: {{ operation.result.result }} Description: {{ operation.result_description }} Type: {{ operation.result.type }} {% if operation.result.dn %} DN: {{ operation.result.dn }} {% endif %} {% if operation.result.message %} Message: {{ operation.result.message }} {% endif %}

{% if operation.result.referrals %}

Referrals: {{ operation.result.referrals | join:", " }}

{% endif %} {% endblock response %}
{% if operation.stacktrace %}
Stacktrace
{{ operation.stacktrace }}
{% endif %}

Entries{% if operation.entry_count > 10 %} (first 10){% endif %}

{% block entries %} {% for entry in operation.entries|slice:":10" %}
{% include entry.template with entry=entry %}
Raw
{{ entry.json | linebreaksbr }}
{% empty %}
No entries included in the response to this operation.
{% endfor %} {% endblock %}