diff options
Diffstat (limited to 'hyperkitty/templates/error-private.html')
-rw-r--r-- | hyperkitty/templates/error-private.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/hyperkitty/templates/error-private.html b/hyperkitty/templates/error-private.html new file mode 100644 index 0000000..07cb5cf --- /dev/null +++ b/hyperkitty/templates/error-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 %} |