{% extends basetemplate|default:"base.html" %} {% load generic %} {% load history %} {% load crispy_forms_tags %} {% load static %} {% block styles %} {{ block.super }} {% endblock styles %} {% block content %}

Merging values of {{ other }} into {{ object }}

{% for change in changes %} {% endfor %}
Old value New value
{{ change.field }} {{ change|get_diff_old }} {{ change|get_diff_new }}
{% if form %} {% crispy form form.helper %} {% endif %}
{% endblock %}