diff options
| author | Joseph Kocherhans <joseph@jkocherhans.com> | 2010-02-24 19:39:04 +0000 |
|---|---|---|
| committer | Joseph Kocherhans <joseph@jkocherhans.com> | 2010-02-24 19:39:04 +0000 |
| commit | 3304afa67a39df10dca432aa5297d15a1795aae6 (patch) | |
| tree | 693dd6839d8f3cf5afee736d3daf79c07c9b70b9 | |
| parent | ff963358d7d3eb31b51f3d74581b8e17025e3859 (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.py | 4 |
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> |
