Ticket #8265: 8265.diff

File 8265.diff, 753 bytes (added by Marinho Brandão, 16 years ago)
  • django/views/debug.py

     
    328328    .specific { color:#cc3300; font-weight:bold; }
    329329    h2 span.commands { font-size:.7em;}
    330330    span.commands a:link {color:#5E5694;}
     331    pre.exception_value { font-size: 1.5em; margin: 10px 0 10px 0; }
    331332  </style>
    332333  <script type="text/javascript">
    333334  //<!--
     
    388389<body>
    389390<div id="summary">
    390391  <h1>{{ exception_type }} at {{ request.path|escape }}</h1>
    391   <h2>{{ exception_value|escape }}</h2>
     392  <pre class="exception_value">{{ exception_value|escape }}</pre>
    392393  <table class="meta">
    393394    <tr>
    394395      <th>Request Method:</th>
Back to Top