diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-10-22 15:00:23 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-10-22 15:00:23 +0200 |
commit | 85423f0b064aaa4f712acaecc66df1ecda360081 (patch) | |
tree | e5c48a28f87a891b39978588597b24eb2fd6a1df /hyperkitty/templates | |
parent | f1a0a71d971ffa4c01a88b92aa4869dd3a12a3fa (diff) | |
download | hyperkitty-85423f0b064aaa4f712acaecc66df1ecda360081.tar.gz hyperkitty-85423f0b064aaa4f712acaecc66df1ecda360081.tar.xz hyperkitty-85423f0b064aaa4f712acaecc66df1ecda360081.zip |
Deal with a disabled search engine
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r-- | hyperkitty/templates/error-nosearch.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/hyperkitty/templates/error-nosearch.html b/hyperkitty/templates/error-nosearch.html new file mode 100644 index 0000000..e27e153 --- /dev/null +++ b/hyperkitty/templates/error-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 %} |