redirect.html 534 B

123456789101112
  1. {% load i18n %}
  2. <html>
  3. <head>
  4. </head>
  5. <body>
  6. <h1>HttpResponseRedirect</h1>
  7. <p>{% trans 'Location' %}: <a href="{{ redirect_to }}">{{ redirect_to }}</a></p>
  8. <p class="notice">
  9. {% trans "The Django Debug Toolbar has intercepted a redirect to the above URL for debug viewing purposes. You can click the above link to continue with the redirect as normal. If you'd like to disable this feature, set the <code>DEBUG_TOOLBAR_CONFIG</code> dictionary's key <code>INTERCEPT_REDIRECTS</code> to <code>False</code>." %}
  10. </p>
  11. </body>
  12. </html>