{%extends "base.html"%} {%block title%}View Case Attribute Diff{%endblock%} {%block css%} {%endblock%} {%block content%}

View Diff

{{flash_me()}}

Changes

{%set the_diff = diff.json_diff_data.diff%} {%if the_diff.Additions | length %}

Additions

+ {{item.Current}}
{%endif%} {%if the_diff.Modifications | length %}

Modifications

{%for item in the_diff.Modifications%}
- {{item.Original}} + {{item.Current}}
{%endfor%} {%endif%} {%if the_diff.Deletions | length %}

Deletions

+ {{item.Original}} - {{item.Current}}
{%endif%}
{%endblock%} {%block js%} {%endblock%}