#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,11 @@
{% load i18n %}
{% include 'inc/panel_table.html' with table=related_changes_table heading='Related Changes' panel_class='default' %}
{% if related_changes_count > related_changes_table.rows|length %}
<div class="float-end">
<a href="{% url 'core:objectchange_list' %}?request_id={{ object.request_id }}" class="btn btn-primary">
{% blocktrans trimmed with count=related_changes_count|add:"1" %}
See All {{ count }} Changes
{% endblocktrans %}
</a>
</div>
{% endif %}