diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2022-02-28 15:46:19 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2022-02-28 15:46:19 +0000 |
commit | 8bd20f96006f160066b6ec64800e8b86b0a64190 (patch) | |
tree | 95cc57d84a4ad58aeed845f74a6a43f398c80739 /templates/errors | |
parent | 6d435ee473335f122799ac08347b7fe2433da80f (diff) | |
download | troggle-8bd20f96006f160066b6ec64800e8b86b0a64190.tar.gz troggle-8bd20f96006f160066b6ec64800e8b86b0a64190.tar.bz2 troggle-8bd20f96006f160066b6ec64800e8b86b0a64190.zip |
Prospecting guide disabled - 100s bad URLs
Diffstat (limited to 'templates/errors')
-rw-r--r-- | templates/errors/disabled.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/templates/errors/disabled.html b/templates/errors/disabled.html new file mode 100644 index 0000000..e625dc5 --- /dev/null +++ b/templates/errors/disabled.html @@ -0,0 +1,50 @@ +{% extends 'base.html' %} + +{% block title %}Troggle Disabled Page{% endblock %} +{% block content %} + +<div class='middle'> + <h2>Troggle Page Disabled</h2> +</div> + + +<div class='middle3 login'> + <div class='space'></div> + <div class='align-center'> + <h3>DISABLED PAGE.</h3> + <h4> + + <font color="red"> + {% if message %} + <pre> + {{message}} + </pre> + {% else %} + <p>This page is disabled. This is not an error. Consult a nerd to find out why.</p> + + {% endif %} + </font> + </h4> + <div class='space'><p> </div> + + <h3>What you should do now</h3> + <p>If you want to find out why, email the nerds at + <a href="mailto:expo-tech@lists.wookware.org">expo-tech@lists.wookware.org</a> with this information: + <ol> + <li>The error message written in <font color="red">red</font> above. + <li>The previous page URL: <font color="red"> +<script type="text/javascript"> + document.write(document.referrer); +</script></font> + <li>Go back to this previous page <script type="text/javascript"> + document.write("<a href='",document.referrer,"'>",document.referrer,"</a>"); + </script> + and see if you can tell whether the bad page reference was in HTML text which had been written manually, or whether it appeared to be a programming error. + </ol> + + + </div> +</div> +</div> + +{% endblock %}
\ No newline at end of file |