Fix blocks relation in templates.
This commit is contained in:
parent
6ec3ea34a3
commit
a14e659836
3 changed files with 12 additions and 10 deletions
|
@ -28,6 +28,8 @@
|
|||
<script type="text/javascript"
|
||||
src="{% static "allauth_ens/authens.js" %}"></script>
|
||||
|
||||
{% block extra_js %}{% endblock %}
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
|
|
@ -67,3 +67,13 @@
|
|||
</section>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
{% block extra_js %}
|
||||
|
||||
{{ block.super }}
|
||||
|
||||
<script type="text/javascript">
|
||||
$( function() { prepareShorcuts(); } );
|
||||
</script>
|
||||
|
||||
{% endblock %}
|
||||
|
|
|
@ -24,13 +24,3 @@
|
|||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
||||
{% block extra_js %}
|
||||
|
||||
{{ block.super }}
|
||||
|
||||
<script type="text/javascript">
|
||||
$( function() { prepareShorcuts(); } );
|
||||
</script>
|
||||
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in a new issue