diff options
Diffstat (limited to 'hyperkitty/templates/errors')
| -rw-r--r-- | hyperkitty/templates/errors/nosearch.html | 31 | ||||
| -rw-r--r-- | hyperkitty/templates/errors/private.html | 27 |
2 files changed, 58 insertions, 0 deletions
diff --git a/hyperkitty/templates/errors/nosearch.html b/hyperkitty/templates/errors/nosearch.html new file mode 100644 index 0000000..e27e153 --- /dev/null +++ b/hyperkitty/templates/errors/nosearch.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} +{% load url from future %} +{% load gravatar %} +{% load hk_generic %} +{% load storm %} + + +{% block title %} +Error: no search engine available +{% if mlist %} + - {{ mlist.display_name|default:mlist.name|escapeemail }} +{% endif %} + - {{ app_name|title }} +{% endblock %} + +{% block content %} + +<div class="row-fluid"> + + <div class="span2"> + </div> + + <div class="span7"> + <p class="text-error"> + Sorry, the search engine is not available (it has been disabled for this site). + </p> + </div> + +</div> + +{% endblock %} diff --git a/hyperkitty/templates/errors/private.html b/hyperkitty/templates/errors/private.html new file mode 100644 index 0000000..07cb5cf --- /dev/null +++ b/hyperkitty/templates/errors/private.html @@ -0,0 +1,27 @@ +{% extends "base.html" %} +{% load url from future %} +{% load gravatar %} +{% load hk_generic %} +{% load storm %} + + +{% block title %} +Error: private list - {{ mlist.display_name|default:mlist.name|escapeemail }} - {{ app_name|title }} +{% endblock %} + +{% block content %} + +<div class="row-fluid"> + + <div class="span2"> + </div> + + <div class="span7"> + <p class="text-error"> + This mailing-list is private, you must be subscribed to view the archives. + </p> + </div> + +</div> + +{% endblock %} |
