{% load pretty %}
{% include 'partials/notify.html' %}
{% if live is not None %}
Live {{ context_object_name_singular }} info
attribute |
value |
{% block live_tbody %}
{% for key, item in live.items %}
{% if key in pretty %}
{{ key }} |
{% if item is not None %}
{{ item|pretty }}
{% endif %}
|
{% else %}
{{ key }} |
{% if item is not None %}
{{ item }}
{% endif %}
|
{% endif %}
{% endfor %}
{% endblock %}
{% endif %}
{% if object is not None %}
{{ title_singular }} info
attribute |
value |
{% block tbody %}
{% for key, item in object.items %}
{% if key in pretty %}
{{ key }} |
{% if item is not None %}
{{ item|pretty }}
{% endif %}
|
{% else %}
{{ key }} |
{% if item is not None %}
{{ item }}
{% endif %}
|
{% endif %}
{% endfor %}
{% endblock %}
{% endif %}