thirdparty/google_appengine/google/appengine/ext/ereporter/templates/report.html
changeset 2864 2e0b0af889be
equal deleted inserted replaced
2862:27971a13089f 2864:2e0b0af889be
       
     1 <!-- Unusual layout is to ensure template is useful with tags stripped, too -->
       
     2 <html><head><title>Daily exception report for app "{{app_id}}", major version "{{major_version}}".</title></head>
       
     3 <body><p>At least {{occurrence_count}} occurrences of {{exception_count}} exceptions across {{version_count}} versions.</p>
       
     4 {% for version in versions %}
       
     5 <h1>Minor version {{version.0}}</h1>
       
     6 {% for exception in version.1 %}
       
     7 <h2>{{exception.signature}} (at least {{exception.count}} occurrences)</h2>
       
     8   <table><tr><th>Handler:</th> <td>{{exception.handler}}</td></tr>
       
     9   <tr><th>URL:</th> <td>{{exception.method|escape}} {{exception.url|escape}}</td></tr>
       
    10   <tr><th>Stacktrace:</th>
       
    11 
       
    12 <td><pre>{{exception.stacktrace|escape}}</pre></td></tr></table>
       
    13 
       
    14 
       
    15 {% endfor %}{% endfor %}</body>