Files
PyRIGS/templates/404.html
Matthew Smith 8c60f6cb1d created separate base for RIGS and assets.
Fixed create asset form
2019-10-01 22:46:48 +01:00

14 lines
310 B
HTML

{% extends 'base_rigs.html' %}
{% load staticfiles %}
{% block title %}Page Not Found{% endblock %}
{% block content %}
<div class="col-sm-12">
<h1>404: Not Found</h1>
<div class="text-center">
<img src="{% static 'imgs/404.jpg' %}"/>
</div>
</div>
{% endblock %}