Fix 412 template to use standard styling that the other 400 templates use. Update forbidden error to return status code 403 instead of 400. Signed-off-by: Mike Terzo <mike@terzo.org>
6 lines
185 B
HTML
6 lines
185 B
HTML
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
<h1>Feature unavailable</h1>
|
|
<p>You've configured Puppetboard with an API version that does not support this feature.</p>
|
|
{% endblock %}
|