blob: 4110ee17bf6bfcda5372da616acbe39f23e991a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
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 %}
|