| 417 | |
| 418 | <form action="http://dpaste.com/" id="pasteform" method="post"> |
| 419 | <input type="hidden" name="language" value="PythonConsole" /> |
| 420 | <input type="hidden" name="title" value="{{ exception_type|escape }} at {{ request.path|escape }}" /> |
| 421 | <input type="hidden" name="source" value="Django Dpaste Agent" /> |
| 422 | <input type="hidden" name="poster" value="Django" /> |
| 423 | <input type="submit" value="paste traceback to dpaste.com" /> |
| 424 | <textarea name="content" cols="140" rows="30" style="display:hidden;"> |
| 425 | {% spaceless %} |
| 426 | Traceback (most recent call last): |
| 427 | {% for frame in frames %} |
| 428 | File "{{ frame.filename|escape }}" in {{ frame.function|escape }} |
| 429 | {% if frame.context_line %}{{ frame.lineno }}. {{ frame.context_line|escape }}{% endif %} |
| 430 | {% endfor %} |
| 431 | {{ exception_type|escape }} at {{ request.path|escape }} |
| 432 | {{ exception_value|escape }} |
| 433 | {% endspaceless %} |
| 434 | </textarea> |
| 435 | </form> |