This one was kind of a doozy. This also adds a custom 403 error page and fixes some permission denied behavior that I was having issues with for a while. This is also set up in a way that hopefully will allow me to easily implement user post deletion. Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
8 lines
180 B
HTML
8 lines
180 B
HTML
{% extends "board/base.html" %}
|
|
{% block title %}
|
|
Permission denied
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h3>You do not have permission to do this.</h3>
|
|
{% endblock content %} |