Add templates for 404 and 500 errors. Fixed #66

This commit is contained in:
Michael Hall 2018-04-15 17:43:05 -04:00
parent 54a4bfbadf
commit eb5fcc9a08
4 changed files with 16 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 631 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 606 KiB

View file

@ -0,0 +1,8 @@
{% extends "get_together/base.html" %}
{% load static %}
{% block content %}
<center>
<img src="{% static 'img/404.png' %}" title="Not Found"/>
</center>
{% endblock %}

View file

@ -0,0 +1,8 @@
{% extends "get_together/base.html" %}
{% load static %}
{% block content %}
<center>
<img src="{% static 'img/500.png' %}" title="Server Error"/>
</center>
{% endblock %}