2021-04-06 00:49:09 +01:00
{% extends 'base.html' %}
2021-04-17 23:59:11 +01:00
2021-12-05 21:23:06 +00:00
{% block title %}Troggle Error - Generic{% endblock %}
2021-04-06 00:49:09 +01:00
{% block content %}
< div class = 'middle' >
2021-12-05 21:23:06 +00:00
< h2 > Troggle Error< / h2 >
2021-04-06 00:49:09 +01:00
< / div >
2021-04-17 23:59:11 +01:00
2021-04-17 21:24:37 +01:00
2021-12-05 21:23:06 +00:00
< div class = 'middle3 login' >
2021-04-06 00:49:09 +01:00
< div class = 'space' > < / div >
< div class = 'align-center' >
2021-12-05 21:23:06 +00:00
< h3 > There has been an error. This is either bad data or a bug in the software.< / h3 >
< h4 >
2021-04-20 22:58:41 +01:00
2021-12-05 21:23:06 +00:00
< font color = "red" >
2021-04-20 22:58:41 +01:00
{% if message %}
2021-12-30 23:27:42 +00:00
< pre >
2021-04-20 22:58:41 +01:00
{{message}}
2021-12-30 23:27:42 +00:00
< / pre >
2021-04-20 22:58:41 +01:00
{% else %}
< p > We are terribly sorry but an unknown fault has occurred. < / p >
2021-12-05 21:23:06 +00:00
{% endif %}
< / font >
< / h4 >
< div class = 'space' > < p > < / div >
< h3 > What you should do now< / h3 >
< p > Please report the error by emailing 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 >
2021-04-06 00:49:09 +01:00
< / div >
< / div >
< / div >
{% endblock %}