{% if item.pgh_context %}
Context
{% trans 'Key' %} |
{% trans 'Value' %} |
|
{% for key, value in item.pgh_context.metadata.items %}
{{ key }} |
{{ value }} |
{% endfor %}
{% endif %}
{% if item.pgh_data %}
Data
{% trans 'Key' %} |
{% trans 'Value' %} |
|
{% for key, value in item.pgh_data.items %}
{{ key }} |
{{ value }} |
{% endfor %}
{% endif %}
{% if item.pgh_diff %}
Changes
{% trans 'Field' %} |
{% trans 'Before' %} |
{% trans 'After' %} |
{% for key, value in item.pgh_diff.items %}
{{ key }} |
{{ value.0 }} |
{{ value.1 }} |
{% endfor %}
{% endif %}
|
{% endif %}
{% endfor %}