15 lines
405 B
HTML
15 lines
405 B
HTML
{% extends "wagtailadmin/pages/index.html" %}
|
|
{% load wagtailadmin_tags i18n %}
|
|
|
|
{% block extra_js %}
|
|
{{ block.super }}
|
|
|
|
<script type="text/javascript">
|
|
if (document.location.href.endsWith('/')) {
|
|
// add ?ordering=ord as default ordering
|
|
console.log('redirect');
|
|
document.location.replace(document.location.href + '?ordering=ord');
|
|
}
|
|
</script>
|
|
{% endblock %}
|