mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
11 lines
248 B
HTML
11 lines
248 B
HTML
{% extends 'base_rigs.html' %}
|
|
{% load static %}
|
|
{% block title %}Forbidden{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="text-center">
|
|
<h1>403: Forbidden</h1>
|
|
<img src="{% static 'imgs/403.jpg' %}"/>
|
|
</div>
|
|
{% endblock %}
|