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