summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Kocherhans <joseph@jkocherhans.com>2010-02-24 19:39:04 +0000
committerJoseph Kocherhans <joseph@jkocherhans.com>2010-02-24 19:39:04 +0000
commit3304afa67a39df10dca432aa5297d15a1795aae6 (patch)
tree693dd6839d8f3cf5afee736d3daf79c07c9b70b9
parentff963358d7d3eb31b51f3d74581b8e17025e3859 (diff)
Fixed #12944. Added Django version to the main part of the debug page. Thanks, robhudson.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12580 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/views/debug.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/django/views/debug.py b/django/views/debug.py
index 6efed55927..6312d01c07 100644
--- a/django/views/debug.py
+++ b/django/views/debug.py
@@ -420,6 +420,10 @@ TECHNICAL_500_TEMPLATE = """
<td>{{ request.build_absolute_uri|escape }}</td>
</tr>
<tr>
+ <th>Django Version:</th>
+ <td>{{ django_version_info }}</td>
+ </tr>
+ <tr>
<th>Exception Type:</th>
<td>{{ exception_type }}</td>
</tr>