aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-04-30 10:54:06 +0100
committerGravatar Gareth Coles <[email protected]>2018-04-30 10:54:06 +0100
commite71ebff22de819bb6ba3335a5b12b2025f039394 (patch)
tree3b0dd49d5635f16cf971df63b2164cb489854882 /templates
parent[Wiki] In-page headers may have icons (diff)
[Wiki] Small template fixes
Diffstat (limited to 'templates')
-rw-r--r--templates/wiki/base.html2
-rw-r--r--templates/wiki/page_in_use.html1
-rw-r--r--templates/wiki/revision_list.html2
3 files changed, 2 insertions, 3 deletions
diff --git a/templates/wiki/base.html b/templates/wiki/base.html
index bc5845ac..aeb64a2a 100644
--- a/templates/wiki/base.html
+++ b/templates/wiki/base.html
@@ -47,7 +47,7 @@
</ul>
</li>
{% else %}
- <li><a href="{{ header.id }}">{{ header.title }}</a></li>
+ <li><a href="{{ header.id }}">{{ header.title | safe }}</a></li>
{% endif %}
{% endfor %}
<li class="uk-nav-divider"></li>
diff --git a/templates/wiki/page_in_use.html b/templates/wiki/page_in_use.html
index 4110ee17..1707845c 100644
--- a/templates/wiki/page_in_use.html
+++ b/templates/wiki/page_in_use.html
@@ -5,7 +5,6 @@
{% 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>
diff --git a/templates/wiki/revision_list.html b/templates/wiki/revision_list.html
index 6eb5b6a8..a1936c32 100644
--- a/templates/wiki/revision_list.html
+++ b/templates/wiki/revision_list.html
@@ -30,7 +30,7 @@
<a href="#" id="compare-submit" class="uk-button uk-button-primary">Compare selections</a>
</div>
<script>
- let revisions = {{ revisions | tojson }}
+ let revisions = {{ revisions | tojson }};
</script>
<script src="{{ static_file("js/revision_diff.js") }}"></script>
{% endblock %}