{% load i18n txcms_utils %}

{% trans 'Plugin Context' %}

{% for key, value in plugin_context_data.iteritems %} {% if value|get_type == 'QuerySet' %} {% else %} {% endif %} {% endfor %}
{% trans 'key' %} {% trans 'value' %}
{{ key }} {% with value as queryset %} {% if value %} {% for qitem in queryset %} {% endfor %}
{% trans 'Object ID' %} {% trans '__dict__' %}
{{ qitem.id }} {% with qitem|get_dict as dictionary %} {% for key, value in dictionary.iteritems %} {% endfor %} {% endwith %}
{% trans 'key' %} {% trans 'value' %}
{{ key }} {{ value }}
{% endif %} {% endwith %}
{{ value }}