diff --git a/django/contrib/history/templates/history/detail.html b/django/contrib/history/templates/history/detail.html
index 49d4947d58..651b9af800 100644
--- a/django/contrib/history/templates/history/detail.html
+++ b/django/contrib/history/templates/history/detail.html
@@ -1,13 +1,60 @@
{% if change %}
+
ChangeLog
+
+
+
+ Name |
+ Value |
+ Verbose |
+
+
+
+{% for field in change_fields %}
+
+ {{ field.name }} |
+ {{ field.data_type }} |
+ {% if field.verbose %}
+ {{ field.verbose|escape }}
+ {% endif %}
+ {% if field.help_text %} -
+ {{ field.help_text|escape }}
+ {% endif %} |
+
+{% endfor %}
+
+
+
+{{ object }}
+
+
+
+ Name |
+ Value |
+ Verbose |
+
+
+
+{% for field in object_fields %}
+
+ {{ field.name }} |
+ {{ field.data_type }} |
+ {{ field.verbose }} |
+
+{% endfor %}
+
+
+
+
- ID: {{ change.id }}
- PID: {{ change.object_id }}
- UID: {{ change.user_id }}
+- Type: {{ change.content_type }}
- Change time: {{ change.change_time }}
- Comment: {{ change.comment }}
- ID: {{ object.id }}
-
- Question: {{ object.question }}
+ - Question: {{ object }}
- Pub date: {{ object.pub_date }}