{% extends "support.html" %} {% block pagehead %} {% include 'pagehead.html' %} {% endblock %} {% block content %} {% if variables %} {% else %}

No Logged Variables

{% endif %} {% for variable in variables %}

{{ variable.custom_name }}

Logged At: {{ variable.time_logged|date:"Y-m-d H:i:s A" }}

Metadata

Type:{{ variable.type }}
Module:{{ variable.module }}
Object ID:{{ variable.object_id }}
Length:{{ variable.length }}
Size (bytes):{{ variable.size_bytes }}
Is None:{{ variable.is_none }}
{% if variable.attributes %}

Attributes

{{ variable.attributes|join:", " }}
{% endif %}

Value

{{ variable.value }}
{% endfor %} {% endblock %}