forked from enviPath/enviPy
All html files now prettier formatted and fixes for incompatible blocks applied Co-authored-by: Tim Lorsbach <tim@lorsba.ch> Reviewed-on: enviPath/enviPy#193 Co-authored-by: Tobias O <tobias.olenyi@envipath.com> Co-committed-by: Tobias O <tobias.olenyi@envipath.com>
19 lines
472 B
HTML
19 lines
472 B
HTML
{% extends "framework.html" %}
|
|
{% load static %}
|
|
{% block content %}
|
|
<div class="alert alert-error" role="alert">
|
|
<h4 class="alert-heading">Access Denied!</h4>
|
|
<p>Access to X denied.</p>
|
|
<hr />
|
|
<p class="mb-0">
|
|
You can find out more about permissions in our
|
|
<a
|
|
target="_blank"
|
|
href="https://wiki.envipath.org/index.php/packages"
|
|
role="button"
|
|
>Wiki >></a
|
|
>
|
|
</p>
|
|
</div>
|
|
{% endblock content %}
|