diff options
Diffstat (limited to 'templates/wiki/page_in_use.html')
-rw-r--r-- | templates/wiki/page_in_use.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/wiki/page_in_use.html b/templates/wiki/page_in_use.html new file mode 100644 index 00000000..4110ee17 --- /dev/null +++ b/templates/wiki/page_in_use.html @@ -0,0 +1,13 @@ +{% extends "wiki/base.html" %} +{% block title %}Wiki Error{% endblock %} +{% block og_title %}Wiki Error{% endblock %} +{% block og_description %}{% endblock %} +{% block content %} + <div class="uk-container uk-container-small"> + <div uk-alert class="uk-alert-warning"> + <a class="uk-alert-close" uk-close></a> + <h3>The page you requested is currently being edited</h3> + <p>Please try again in a little bit when the lock has expired.</p> + </div> + </div> +{% endblock %} |