#20923: Initial work on migrating the core app

This commit is contained in:
Jeremy Stretch
2026-03-25 12:57:10 -04:00
parent 981f31304d
commit bf27ff9593
25 changed files with 314 additions and 428 deletions

View File

@@ -0,0 +1,18 @@
{% load helpers %}
{% load i18n %}
<div class="card">
<h2 class="card-header">{% trans "Post-Change Data" %}</h2>
<div class="card-body">
{% if object.postchange_data %}
{% spaceless %}
<pre class="change-data">
{% for k, v in object.postchange_data_clean.items %}
<span{% if k in diff_added %} class="added"{% endif %}>{{ k }}: {{ v|json }}</span>
{% endfor %}
</pre>
{% endspaceless %}
{% else %}
<span class="text-muted">{% trans "None" %}</span>
{% endif %}
</div>
</div>