422.html 727 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html class="dark">
  3. <meta charset="utf-8">
  4. <title>422: Unprocessable Entity</title>
  5. <link rel="stylesheet" href="/assets/error/style.css">
  6. <body <% if @traceback %>class="error-message"<% end %>>
  7. <h1>422: The change you wanted was rejected.</h1>
  8. <% if @message.present? %>
  9. <div><%= @message %></div>
  10. <% end %>
  11. <% if !@traceback %>
  12. <div class="error-image" style="background-image: url(/assets/error/error-1.svg)"></div>
  13. <p>Maybe you tried to change something you didn't have access to.</p>
  14. <% else %>
  15. <div><%= @exception.message %></div>
  16. <% if @exception.backtrace %>
  17. <div>Traceback:</div>
  18. <% @exception.backtrace.each {|row| %>
  19. <%= row %><br>
  20. <% } %>
  21. <% end %>
  22. <% end %>
  23. </html>