500.html 598 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Application error</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=${_response_encoding}"/>
  6. </head>
  7. <body>
  8. #{if play.mode.name() == 'DEV'}
  9. #{500 exception /}
  10. #{/if}
  11. #{else}
  12. <h1>Oops, an error occured</h1>
  13. #{if exception instanceof play.exceptions.PlayException}
  14. <p>
  15. This exception has been logged with id <strong>${exception.id}</strong>.
  16. </p>
  17. #{/if}
  18. #{/else}
  19. </body>
  20. </html>