forked from enviPath/enviPy
19 lines
463 B
HTML
19 lines
463 B
HTML
{% extends "framework.html" %}
|
|
{% load static %}
|
|
{% block content %}
|
|
<div class="alert alert-error" role="alert">
|
|
<h4 class="alert-heading">Not Found!</h4>
|
|
<p>Does not exist</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 %}
|