diff --git a/django/contrib/history/templates/history/detail.html b/django/contrib/history/templates/history/detail.html
index 651b9af800..527f74a8c8 100644
--- a/django/contrib/history/templates/history/detail.html
+++ b/django/contrib/history/templates/history/detail.html
@@ -1,5 +1,6 @@
{% if change %}
ChangeLog
+{% comment %}
@@ -23,8 +24,9 @@
{% endfor %}
+{% endcomment %}
-{{ object }}
+{{ object }}
{% comment %}
@@ -43,11 +45,12 @@
{% endfor %}
-
+{% endcomment %}
- ID: {{ change.id }}
- PID: {{ change.object_id }}
+- Parent: {{ change.parent.id }}
- UID: {{ change.user_id }}
- Type: {{ change.content_type }}
- Change time: {{ change.change_time }}
diff --git a/django/contrib/history/templates/history/list.html b/django/contrib/history/templates/history/list.html
index 5f5bfec069..d3f68128bc 100644
--- a/django/contrib/history/templates/history/list.html
+++ b/django/contrib/history/templates/history/list.html
@@ -2,7 +2,8 @@
ID: |
-PID: |
+PID: |
+PaID: |
Change time: |
Type: |
Ch: |
@@ -12,6 +13,7 @@
{{ change.id }} |
{{ change.object_id }} |
+{{ change.parent.id }} |
{{ change.change_time }} |
{{ change.content_type }} |
{{ change.change_type }} |