Commit 39b55d30 authored by Serge S. Koval's avatar Serge S. Koval

Call super in all tail blocks

parent 65b86aac
...@@ -119,6 +119,7 @@ ...@@ -119,6 +119,7 @@
{% endblock %} {% endblock %}
{% block tail %} {% block tail %}
{{ super() }}
{{ actionslib.script(_gettext('Please select at least one file.'), {{ actionslib.script(_gettext('Please select at least one file.'),
actions, actions,
actions_confirmation) }} actions_confirmation) }}
......
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
{% endblock %} {% endblock %}
{% block tail %} {% block tail %}
<script src="{{ url_for('admin.static', filename='js/bootstrap-datepicker.js') }}"></script> {{ super() }}
<script src="{{ url_for('admin.static', filename='js/form.js') }}"></script> <script src="{{ url_for('admin.static', filename='js/bootstrap-datepicker.js') }}"></script>
<script src="{{ url_for('admin.static', filename='js/form.js') }}"></script>
{% endblock %} {% endblock %}
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
{% endblock %} {% endblock %}
{% block tail %} {% block tail %}
<script src="{{ url_for('admin.static', filename='js/bootstrap-datepicker.js') }}"></script> {{ super() }}
<script src="{{ url_for('admin.static', filename='js/form.js') }}"></script> <script src="{{ url_for('admin.static', filename='js/bootstrap-datepicker.js') }}"></script>
<script src="{{ url_for('admin.static', filename='js/form.js') }}"></script>
{% endblock %} {% endblock %}
...@@ -128,6 +128,7 @@ ...@@ -128,6 +128,7 @@
{% endblock %} {% endblock %}
{% block tail %} {% block tail %}
{{ super() }}
<script src="{{ url_for('admin.static', filename='js/bootstrap-datepicker.js') }}"></script> <script src="{{ url_for('admin.static', filename='js/bootstrap-datepicker.js') }}"></script>
<script src="{{ url_for('admin.static', filename='js/form.js') }}"></script> <script src="{{ url_for('admin.static', filename='js/form.js') }}"></script>
<script src="{{ url_for('admin.static', filename='js/filters.js') }}"></script> <script src="{{ url_for('admin.static', filename='js/filters.js') }}"></script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment