diff --git a/django/views/debug.py b/django/views/debug.py
index a118ac3..d05e46d 100644
a
|
b
|
Exception Value: {{ exception_value|escape }}
|
577 | 577 | {% else %} |
578 | 578 | <p>No POST data</p> |
579 | 579 | {% endif %} |
| 580 | <h3 id="files-info">FILES</h3> |
| 581 | {% if request.FILES %} |
| 582 | <table class="req"> |
| 583 | <thead> |
| 584 | <tr> |
| 585 | <th>Variable</th> |
| 586 | <th>Value</th> |
| 587 | </tr> |
| 588 | </thead> |
| 589 | <tbody> |
| 590 | {% for var in request.FILES.items %} |
| 591 | <tr> |
| 592 | <td>{{ var.0 }}</td> |
| 593 | <td class="code"><div>{{ var.1|pprint }}</div></td> |
| 594 | </tr> |
| 595 | {% endfor %} |
| 596 | </tbody> |
| 597 | </table> |
| 598 | {% else %} |
| 599 | <p>No FILES data</p> |
| 600 | {% endif %} |
| 601 | |
580 | 602 | |
581 | 603 | <h3 id="cookie-info">COOKIES</h3> |
582 | 604 | {% if request.COOKIES %} |