Move project files to root directory

This commit is contained in:
PCoder 2019-02-17 17:43:06 +01:00
commit ace2fa6eb9
223 changed files with 7 additions and 7 deletions

17
dal/templates/error.html Normal file
View file

@ -0,0 +1,17 @@
<title> An error has occurred! </title>
<h2> We are sorry, an error has occured while handling your request. </h2>
While trying to {{service}}, an error was encountered: {{error}}
<br><br>
You can try to:
<br>
{% if urlname %}
<form action={% url urlname %} method="get">
<input type="submit" value="Go back and try again">
</form>
<br>or<br>
{% endif %}
<form action={% url 'index' %} method="get">
<input type="submit" value="Go to the indexpage">
</form>